Alfresco:社区版是否提供文档库功能

我已经安装了免费的Alfresco社区版,并试图找出哪些内容管理功能已经为我开箱即用。 我注意到我可以创建空间并将内容放在那里,有版本控制和一些基本的工作流程,但我可以: 用文件夹结构化内容? 浏览内容列表时应用过滤器? 我见过的所有演示都对Alfresco Share有吸引力,但是分享是在comminity版本内还是仅仅是另一种不免费的产品?     
已邀请:
共享是/也应该自动安装,如果您更换在露天结束的网址分享您是否获得登录屏幕? 在共享中,您可以设置标签,使用标签可以过滤内容.... 在Alfresco Explorer中,您可以使用Categories。如果单击编辑详细信息,则可以在下面的面板中添加类别。 您可以在这篇文章/书中看到一些截图: https://www.packtpub.com/article/implementing-document-management-alfresco-3-2 您可以在web-extension文件夹中的某处检查share-config-custom.xml。 应该写这样的东西:
<config evaluator="string-compare" condition="Remote">
        <remote>
            <endpoint>
                <id>alfresco-noauth</id>
                <name>Alfresco - unauthenticated access</name>
                <description>Access to Alfresco Repository WebScripts that do not require authentication</description>
                <connector-id>alfresco</connector-id>
                <endpoint-url>http://localhost:8080/alfresco/s</endpoint-url>
                <identity>none</identity>
            </endpoint>

            <endpoint>
                <id>alfresco</id>
                <name>Alfresco - user access</name>
                <description>Access to Alfresco Repository WebScripts that require user authentication</description>
                <connector-id>alfresco</connector-id>
                <endpoint-url>http://localhost:8080/alfresco/s</endpoint-url>
                <identity>user</identity>
            </endpoint>

            <endpoint>
                <id>alfresco-feed</id>
                <name>Alfresco Feed</name>
                <description>Alfresco Feed - supports basic HTTP authentication via the EndPointProxyServlet</description>
                <connector-id>http</connector-id>
                <endpoint-url>http://localhost:8080/alfresco/s</endpoint-url>
                <basic-auth>true</basic-auth>
                <identity>user</identity>
            </endpoint>
        </remote>
    </config>
我检查一下localhost指向正确的Alfresco安装,那么它应该没问题。如果没有把ip放入,那么Alfresco正在运行。可能是Share没有连接到Alfresco。如果它不起作用,可能会显示alfresco.log日志文件。     

要回复问题请先登录注册