0

無料の Alfresco コミュニティ エディションをインストールして、すぐに使用できるコンテンツ管理機能を調べてみました。

スペースを作成してそこにコンテンツを配置できることに気付きました。バージョン管理といくつかの基本的なワークフローがありますが、できることは次のとおりです。

  • フォルダでコンテンツを構造化しますか?
  • コンテンツ リストの閲覧中にフィルタを適用しますか?

私が見たすべてのデモは Alfresco Share にアピールしていますが、Share はコミュニティ エディション内にあるのでしょうか、それとも無料ではない別の製品なのでしょうか?

4

1 に答える 1

2

alfresco で終わる URL を share に置き換えると、Share も自動的にインストールされます。ログイン画面は表示されますか?

共有内でタグを設定でき、タグを使用してコンテンツをフィルタリングできます....

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 に答える