<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: i'm trying to install alfresco comunity from a distribution zip in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115294#M31993</link>
    <description>&lt;P&gt;You can disable CSRF by adding following config in share-config-custom.xml, you need to add the following lines:&lt;/P&gt;
&lt;PRE&gt;&amp;lt;config evaluator="string-compare" condition="CSRFPolicy" replace="true"&amp;gt;
&amp;nbsp; &amp;nbsp;&amp;lt;filter/&amp;gt;
&amp;lt;/config&amp;gt;&lt;/PRE&gt;
&lt;P&gt;After restart, the error should go hopefully.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Nov 2019 20:29:05 GMT</pubDate>
    <dc:creator>abhinavmishra14</dc:creator>
    <dc:date>2019-11-20T20:29:05Z</dc:date>
    <item>
      <title>i'm trying to install alfresco comunity from a distribution zip</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115287#M31986</link>
      <description>&lt;P&gt;i think i did well mounting the apache tomcat(at least the share page shows in my explorer) the problem is the database integration i don't know what i have to do to configure a database for alfresco or if i have to. At least i want to be able to create an account externally so i can log in and see if i did everything fine during the process. For the database i have postgres and mySQL just don't know what to do with that&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 19:56:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115287#M31986</guid>
      <dc:creator>KnGod</dc:creator>
      <dc:date>2019-11-18T19:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: i'm trying to install alfresco comunity from a distribution zip</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115288#M31987</link>
      <description>&lt;P&gt;Which version you are trying to install ? Did you followed the steps documented here:&amp;nbsp;&lt;A href="https://docs.alfresco.com/community/concepts/install-community-intro.html" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/community/concepts/install-community-intro.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Check if you have correct db configurations in the global properties file, see instructions here:&amp;nbsp;&lt;A href="https://docs.alfresco.com/community/tasks/alf-war-install.html" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/community/tasks/alf-war-install.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;An admin user is by default created. default user name is "admin" and password is : "admin"&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 21:43:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115288#M31987</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2019-11-18T21:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: i'm trying to install alfresco comunity from a distribution zip</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115289#M31988</link>
      <description>&lt;P&gt;i´m triyng to install Alfresco comunity 6.1.2 i followed a pdf i downloaded from the official page but the steps didn´t specifyed what i had to do with the database. I start the tomcat and the share page becomes aviliable but the db i´m not too shure what to do with that i already tryed the admin user and password but pretty shure it´s because of me don´t knowing what to do with the database&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 19:34:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115289#M31988</guid>
      <dc:creator>KnGod</dc:creator>
      <dc:date>2019-11-19T19:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: i'm trying to install alfresco comunity from a distribution zip</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115290#M31989</link>
      <description>&lt;P&gt;You have to manually create a database (or a scheme, depending on the DBMS you use). I. e. in MySQL something like this:&lt;/P&gt;&lt;P&gt;DROP DATABASE IF EXISTS `alfresco`;&lt;BR /&gt;CREATE DATABASE `alfresco` DEFAULT CHARACTER SET utf8;&lt;/P&gt;&lt;P&gt;Next step you'll have to create a database account for Alfresco and grant to it all privileges for the created scheme.&lt;/P&gt;&lt;P&gt;Then, in alfresco-global.properties provide all the required parameters&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;db.username&lt;/SPAN&gt;=&lt;SPAN&gt;${alfresco.db.username}&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;db.password&lt;/SPAN&gt;=&lt;SPAN&gt;${alfresco.db.password}&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;db.driver&lt;/SPAN&gt;=&lt;SPAN&gt;${db.driver}&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;db.url&lt;/SPAN&gt;=&lt;SPAN&gt;jdbc:mysql://${db.host}:${db.port}/${db.name}?useUnicode=yes&amp;amp;characterEncoding=UTF-8&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Replace ${} placeholders with actual values.&lt;/P&gt;&lt;P&gt;That is all that you need to do regarding database configuration. When you start Alfresco it will create all the neccesary tables in the specified database.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 05:33:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115290#M31989</guid>
      <dc:creator>Vic</dc:creator>
      <dc:date>2019-11-20T05:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: i'm trying to install alfresco comunity from a distribution zip</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115291#M31990</link>
      <description>&lt;P&gt;Take a look at this page as well&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.alfresco.com/6.1/concepts/intro-db-setup.html" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/6.1/concepts/intro-db-setup.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 05:34:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115291#M31990</guid>
      <dc:creator>Vic</dc:creator>
      <dc:date>2019-11-20T05:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: i'm trying to install alfresco comunity from a distribution zip</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115292#M31991</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In my case, I had some problems to install it because information about some points is too general; so maybe you can take a look to the server logs. It could be useful for you and it will help you to solve problems.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;clv&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 10:02:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115292#M31991</guid>
      <dc:creator>calvo</dc:creator>
      <dc:date>2019-11-20T10:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: i'm trying to install alfresco comunity from a distribution zip</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115293#M31992</link>
      <description>&lt;P&gt;thanks for the help. I managed to set up my database and alffresco is using it but a new problem apeared: it seems my conection is insecure? the error happens when i&amp;nbsp; try to login&amp;nbsp; and the text in the tomcat window is(ERROR [alfresco.web.site][http-nio-8080-exec-2]javax.servlet.ServletException: Possible CSRF attack noted when asserting referer header '&lt;A href="http://127.0.0.1:8080/share/page/console/admin-console/application" target="_blank" rel="nofollow noopener noreferrer"&gt;http://127.0.0.1:8080/share/page/console/admin-console/application&lt;/A&gt;'. Request: POST /share/page/dologin, FAILED TEST: Assert referer POST /share/page/dologin :: referer: '&lt;A href="http://127.0.0.1:8080/share/page/console/admin-console/application" target="_blank" rel="nofollow noopener noreferrer"&gt;http://127.0.0.1:8080/share/page/console/admin-console/application&lt;/A&gt;' vs server &amp;amp; context: &lt;A href="https://127.0.0.1:8080/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://127.0.0.1:8080/&lt;/A&gt; (string) or (regexp))&amp;nbsp; seems i don't have permitions to logg in? any idea about that?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 19:15:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115293#M31992</guid>
      <dc:creator>KnGod</dc:creator>
      <dc:date>2019-11-20T19:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: i'm trying to install alfresco comunity from a distribution zip</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115294#M31993</link>
      <description>&lt;P&gt;You can disable CSRF by adding following config in share-config-custom.xml, you need to add the following lines:&lt;/P&gt;
&lt;PRE&gt;&amp;lt;config evaluator="string-compare" condition="CSRFPolicy" replace="true"&amp;gt;
&amp;nbsp; &amp;nbsp;&amp;lt;filter/&amp;gt;
&amp;lt;/config&amp;gt;&lt;/PRE&gt;
&lt;P&gt;After restart, the error should go hopefully.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 20:29:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-m-trying-to-install-alfresco-comunity-from-a-distribution-zip/m-p/115294#M31993</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2019-11-20T20:29:05Z</dc:date>
    </item>
  </channel>
</rss>

