2011-03-31 105 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