Alfresco: Community Edition предоставляет функции библиотеки документов

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

  •  14-11-2019
  •  | 
  •  

Вопрос

Я установил бесплатное издание Alfresco Community, и попытайтесь выяснить, какие способности управления контентом готовы для меня вне коробки.

Я заметил, что я могу создавать пробелы и поставить контент там, есть контроль версий и некоторые основные рабочие процессы, но я могу:

    .
  • структурирует контент с папками?
  • Применить фильтры во время просмотра списка содержимого?

    Все демонстрация, которые я видел апелляции на Alfresco Share, но поделится внутри премии семейства или это просто другой продукт, который не свободен?

Это было полезно?

Решение

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