0

我已经安装了免费的 Alfresco 社区版,并试图找出哪些内容管理功能可供我开箱即用。

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

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

我看到的所有演示都对 Alfresco Share 有吸引力,但 Share 是在社区版内,还是只是另一种不免费的产品?

4

1 回答 1

2

分享是/应该自动安装,如果你替换你在露天分享的网址,你会得到一个登录屏幕吗?

在共享中,您可以设置标签,并且使用标签您可以过滤内容......

在 Alfresco Explorer 中,您可以使用类别。如果您单击编辑详细信息,则下方有一个面板,您可以在其中添加类别。你可以看到这篇文章/书的一些截图: 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 如果它不工作的话。

于 2011-03-31T13:23:20.553 回答