X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=INSTALL.txt;h=4345fcab1bff4c60c2eabd07046af1c57597daec;hb=749b167fd9be7b02118a3311ed62e5cdbe2d931f;hp=9340927f40800caea0b231f78546eea04890e2c7;hpb=7acb4b04343df31c2cc78214fae5429c66d95fb2;p=friendica.git diff --git a/INSTALL.txt b/INSTALL.txt index 9340927f40..4345fcab1b 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -66,10 +66,39 @@ OR 2b. Clone the friendica/friendica GitHub repository and import dependencies - git clone https://github.com/friendica/friendica [web server folder] + git clone https://github.com/friendica/friendica -b master [web server folder] cd [web server folder] php bin/composer.phar install +Make sure the folder view/smarty3 exists and is writable by the webserver +user, in this case `www-data` + + mkdir view/smarty3 + chown www-data:www-data view/smarty3 + chmod 775 view/smarty3 + +Get the addons by going into your website folder. + + cd mywebsite + +Clone the addon repository (separately): + + git clone https://github.com/friendica/friendica-addons.git -b master addon + +If you copy the directory tree to your webserver, make sure that you also +copy .htaccess - as "dot" files are often hidden and aren't normally copied. + +If you want to use the development version of Friendica you can switch to +the devel branch in the repository by running + + git checkout develop + bin/composer.phar install + cd addon + git checkout develop + +please be aware that the develop branch may break your Friendica node at any +time. If you encounter a bug, please let us know. + 3. Create an empty database and note the access details (hostname, username, password, database name).