Alfresco: هل توفر طبعة المجتمع وظائف مكتبة المستندات

StackOverflow https://stackoverflow.com/questions/5500480

  •  14-11-2019
  •  | 
  •  

سؤال

قمت بتثبيت طبعة مجتمع Alfresco المجانية ومحاولة معرفة قدرات إدارة المحتوى على استعداد لي خارج المربع.

لاحظت أنه يمكنني إنشاء مسافات ووضع المحتوى هناك، وهناك عنصر تحكم الإصدار وبعض سير العمل الأساسية ولكن يمكنني:

  • هيكلة المحتوى مع المجلدات؟
  • تطبيق المرشحات أثناء تصفح قائمة المحتوى؟

    جميع العروض التي رأيت فيها نداءات إلى حصة Alfresco، ولكن هل هناك حصة داخل الطبعة الداخلي أم أنها مجرد منتج آخر غير مجاني؟

هل كانت مفيدة؟

المحلول

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.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top