我已经安装了免费的alfresco社区版本,并试图弄清楚内容管理能力为我开箱即用。

我注意到我可以在那里创建空格并将内容放在那里,有版本控制和一些基本的工作流,但我可以:

  • 用文件夹结构化内容?
  • 在浏览内容列表时应用过滤器?

    所有演示我已经看到了alfresco份额的吸引力,但是份额是内部结局版,或者只是另一种不自由的产品吗?

有帮助吗?

解决方案

Share is/should also be automatically be installed, if you replace your url which ends on alfresco to share do you get a login screen?

Within Share you can set Tags, and with tags you can filter content....

In Alfresco Explorer you can use Categories. If you click on edit details there is a panel below where you can add categories. You can see this article/book for some screenshots: https://www.packtpub.com/article/implementing-document-management-alfresco-3-2


You can check the share-config-custom.xml somewhere in web-extension folder.

There should be something like this written:

<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>

I you check that the localhost points towards the right Alfresco installation, then it should be fine. If not put the ip in, were Alfresco is running. It could be that Share isn't connecting to Alfresco. Present the log files alfresco.log probably if it isn't working.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top