Merge pull request #4836 from Angristan/patch-1
[friendica.git/.git] / doc / Install.md
1 Friendica Installation
2 ===============
3
4 We've tried very hard to ensure that Friendica will run on commodity hosting platforms - such as those used to host Wordpress blogs and Drupal websites.
5 We offer a manual and an automatic installation.
6 But be aware that Friendica is more than a simple web application.
7 It is a complex communications system which more closely resembles an email server than a web server.
8 For reliability and performance, messages are delivered in the background and are queued for later delivery when sites are down.
9 This kind of functionality requires a bit more of the host system than the typical blog.
10 Not every PHP/MySQL hosting provider will be able to support Friendica.
11 Many will.
12 But **please** review the requirements and confirm these with your hosting provider prior to installation.
13
14 Also if you encounter installation issues, please let us know via the [helper](http://forum.friendi.ca/profile/helpers) or the [developer](https://forum.friendi.ca/profile/developers) forum or [file an issue](https://github.com/friendica/friendica/issues).
15 Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future.
16 Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues.
17 If you do not have a Friendica account yet, you can register a temporary one at [tryfriendica.de](https://tryfriendica.de) and join the forums mentioned above from there.
18 The account will expire after 7 days, but you can ask the server admin to keep your account longer, should the problem not be resolved after that.
19
20 Before you begin: Choose a domain name or subdomain name for your server.
21 Put some thought into this. Changing it after installation is currently not supported.
22 Things will break, and some of your friends may have difficulty communicating with you.
23 We plan to address this limitation in a future release.
24
25
26 Requirements
27 ---
28
29 * Apache with mod-rewrite enabled and "Options All" so you can use a local .htaccess file
30 * PHP 5.6+ (PHP 7 is recommended for performance)
31   * PHP *command line* access with register_argc_argv set to true in the php.ini file
32   * Curl, GD, PDO, MySQLi, hash, xml, zip and OpenSSL extensions
33   * The POSIX module of PHP needs to be activated (e.g. [RHEL, CentOS](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) have disabled it)
34   * some form of email server or email gateway such that PHP mail() works
35 * Mysql 5.5.3+ or an equivalant alternative for MySQL (MariaDB, Percona Server etc.)
36 * the ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks (Windows) (Note: other options are presented in Section 7 of this document.)
37 * Installation into a top-level domain or sub-domain (without a directory/path component in the URL) is preferred. Directory paths will not be as convenient to use and have not been thoroughly tested.
38 * If your hosting provider doesn't allow Unix shell access, you might have trouble getting everything to work.
39
40 Installation procedure
41 ---
42
43 ### Get Friendica
44
45 Unpack the Friendica files into the root of your web server document area.
46 If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file.
47 This makes the software much easier to update.
48 The Linux commands to clone the repository into a directory "mywebsite" would be
49
50     git clone https://github.com/friendica/friendica.git mywebsite
51     cd mywebsite
52     bin/composer.phar install
53
54 Make sure the folder *view/smarty3* exists and is writable by the webserver user, in this case `www-data`
55
56     mkdir view/smarty3
57     chown www-data:www-data view/smarty3
58     chmod 775 view/smarty3
59
60 Get the addons by going into your website folder.
61
62     cd mywebsite
63
64 Clone the addon repository (separately):
65
66     git clone https://github.com/friendica/friendica-addons.git addon
67
68 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.
69
70 ### Create a database
71
72 Create an empty database and note the access details (hostname, username, password, database name).
73
74 Friendica needs the permission to create and delete fields and tables in its own database.
75
76 With newer releases of MySQL (5.7.17 or newer), you might need to set the sql_mode to '' (blank).
77 Use this setting when the installer is unable to create all the needed tables due to a timestamp format problem.
78 In this case find the [mysqld] section in your my.cnf file and add the line :
79
80     sql_mode = ''
81
82 Restart mysql and you should be fine.
83
84 ### Option A: Run the manual installer
85
86 Point your web browser to the new site and follow the instructions.
87 Please note any error messages and correct these before continuing.
88
89 If you need to specify a port for the connection to the database, you can do so in the host name setting for the database.
90
91 *If* the manual installation fails for any reason, check the following:
92
93 * Does ".htconfig.php" exist? If not, edit htconfig.php and change the system settings. Rename to .htconfig.php
94 * Is the database is populated? If not, import the contents of "database.sql" with phpmyadmin or the mysql command line.
95
96 At this point visit your website again, and register your personal account.
97 Registration errors should all be recoverable automatically.
98 If you get any *critical* failure at this point, it generally indicates the database was not installed correctly.
99 You might wish to move/rename .htconfig.php to another name and empty (called 'dropping') the database tables, so that you can start fresh.
100
101 ### Option B: Run the automatic install script
102
103 Open the file htconfig.php in the main Friendica directory with a text editor.
104 Remove the `die('...');` line and edit the lines to suit your installation (MySQL, language, theme etc.).
105 Then save the file (do not rename it). 
106
107 Navigate to the main Friendica directory and execute the following command:
108
109     bin/console autoinstall
110
111 Or if you wish to include all optional checks, execute this statement instead:
112
113     bin/console autoinstall -a
114
115 At this point visit your website again, and register your personal account.
116
117 *If* the automatic installation fails for any reason, check the following:
118
119 * Does ".htconfig.php" already exist? If yes, the automatic installation won't start
120 * Are the settings inside "htconfig.php" correct? If not, edit the file again.
121 * Is the empty MySQL-database created? If not, create it.
122
123 For more information during the installation, you can use this command line option
124
125     bin/console autoinstall -v
126
127 ### Set up the worker
128
129 Set up a cron job or scheduled task to run the worker once every 5-10 minutes in order to perform background processing.
130 Example:
131
132     cd /base/directory; /path/to/php bin/worker.php
133
134 Change "/base/directory", and "/path/to/php" as appropriate for your situation.
135
136 If you are using a Linux server, run "crontab -e" and add a line like the
137 one shown, substituting for your unique paths and settings:
138
139     */10 * * * * cd /home/myname/mywebsite; /usr/bin/php bin/worker.php
140
141 You can generally find the location of PHP by executing "which php".
142 If you run into trouble with this section please contact your hosting provider for assistance.
143 Friendica will not work correctly if you cannot perform this step.
144
145 If it is not possible to set up a cron job then please activate the "frontend worker" in the administration interface.
146
147 Once you have installed Friendica and created an admin account as part of the process, you can access the admin panel of your installation and do most of the server wide configuration from there
148
149 ### Set up a backup plan
150
151 Bad things will happen.
152 Let there be a hardware failure, a corrupted database or whatever you can think of.
153 So once the installation of your Friendica node is done, you should make yourself a backup plan.
154
155 The most important file is the `.htconfig.php` file in the base directory.
156 As it stores all your data, you should also have a recent dump of your Friendica database at hand, should you have to recover your node.