2011-03-31 60 views
0

我已经安装了免费的Alfresco社区版,并试图弄清楚什么样的内容管理功能已经为我准备好了。Alfresco:社区版是否提供了文档库功能

我发现我可以创造空间,并把内容放到那里,是版本控制和一些基本的工作流程,但我可以:

  • Structurize内容与文件夹?
  • 在浏览内容列表时应用过滤器吗?

我见过呼吁露天分享所有的演示,但确实份额comminity版里面或者是它只是一个产品,是不是免费的?

回答

2

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

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

在Alfresco的浏览器可以使用分类。如果您点击编辑详细信息,您可以在下面的面板中添加类别。 你可以看到这篇文章/书一些截图: https://www.packtpub.com/article/implementing-document-management-alfresco-3-2


您可以某处签到股权分置的配置,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> 

我给你检查朝着正确的露天安装的本地主机点,那么它应该是罚款。如果没有放入ip,Alfresco正在运行。这可能是Share没有连接到Alfresco。如果它不工作,可能会显示日志文件alfresco.log。

+0

谢谢@Shazada!这很好,但是在安装后我应该使用Share admin作为默认账户?管理员/管理员工作为/露天,但不是/分享 – 2011-03-31 13:34:45

+0

它应该是相同的! – 2011-03-31 13:38:50

+1

这是真的!管理员设法以本地化方式混乱配置文件,而不是固定的! – 2011-04-01 05:59:29

相关问题