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

发布于 2024-10-27 20:48:43 字数 219 浏览 1 评论 0原文

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

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

  • 使用文件夹构建内容吗?
  • 浏览内容列表时应用过滤器?

我见过的所有演示都对 Alfresco Share 有吸引力,但 share 是社区版还是只是另一个不免费的产品?

I have installed free Alfresco community edition and try to figure out what content management abilities are ready to me out-of-the-box.

I noticed I can create spaces and put content there, there is version control and some basic workflows but can I:

  • Structurize content with folders?
  • Apply filters while browsing content list?

All demos I have seen appeals to Alfresco Share, but does share is inside comminity edition or is it just another product that is not free?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

客…行舟 2024-11-03 20:48:43

共享也应该自动安装,如果您替换以 alfresco 结尾的网址进行共享,您会看到登录屏幕吗?

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

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

我检查本地主机是否指向正确的 Alfresco 安装,那么应该没问题。如果没有输入 IP,则 Alfresco 正在运行。可能是 Share 未连接到 Alfresco。如果它不工作,可能会显示日志文件 alfresco.log。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文