]> git.mxchange.org Git - friendica.git/blob - doc/Install.md
Small cleanup (#5416)
[friendica.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.1+ (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 -b master 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 -b master 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 If you want to use the development version of Friendica you can switch to the devel branch in the repository by running
71
72     git checkout develop
73     bin/composer.phar install
74     cd addon
75     git checkout develop
76
77 please be aware that the develop branch may break your Friendica node at any time.
78 If you encounter a bug, please let us know.
79
80 ### Create a database
81
82 Create an empty database and note the access details (hostname, username, password, database name).
83
84 Friendica needs the permission to create and delete fields and tables in its own database.
85
86 With newer releases of MySQL (5.7.17 or newer), you might need to set the sql_mode to '' (blank).
87 Use this setting when the installer is unable to create all the needed tables due to a timestamp format problem.
88 In this case find the [mysqld] section in your my.cnf file and add the line :
89
90     sql_mode = ''
91
92 Restart mysql and you should be fine.
93
94 ### Option A: Run the manual installer
95
96 Point your web browser to the new site and follow the instructions.
97 Please note any error messages and correct these before continuing.
98
99 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.
100
101 *If* the manual installation fails for any reason, check the following:
102
103 * Does "config/local.ini.php" exist? If not, edit config/local-sample.ini.php and change the system settings.
104 * Rename to `config/local.ini.php`.
105 * Is the database is populated? If not, import the contents of `database.sql` with phpmyadmin or the mysql command line.
106
107 At this point visit your website again, and register your personal account.
108 Registration errors should all be recoverable automatically.
109 If you get any *critical* failure at this point, it generally indicates the database was not installed correctly.
110 You might wish to move/rename `config/local.ini.php` to another name and empty (called 'dropping') the database tables, so that you can start fresh.
111
112 ### Option B: Run the automatic install script
113
114 Open the file htconfig.php in the main Friendica directory with a text editor.
115 Remove the `die('...');` line and edit the lines to suit your installation (MySQL, language, theme etc.).
116 Then save the file (do not rename it).
117
118 Navigate to the main Friendica directory and execute the following command:
119
120     bin/console autoinstall
121
122 Or if you wish to include all optional checks, execute this statement instead:
123
124     bin/console autoinstall -a
125
126 At this point visit your website again, and register your personal account.
127
128 *If* the automatic installation fails for any reason, check the following:
129
130 * Does "config/local.ini.php" already exist? If yes, the automatic installation won't start
131 * Are the settings inside "htconfig.php" correct? If not, edit the file again.
132 * Is the empty MySQL-database created? If not, create it.
133
134 For more information during the installation, you can use this command line option
135
136     bin/console autoinstall -v
137
138 ### Set up the worker
139
140 Set up a cron job or scheduled task to run the worker once every 5-10 minutes in order to perform background processing.
141 Example:
142
143     cd /base/directory; /path/to/php bin/worker.php
144
145 Change "/base/directory", and "/path/to/php" as appropriate for your situation.
146
147 If you are using a Linux server, run "crontab -e" and add a line like the
148 one shown, substituting for your unique paths and settings:
149
150     */10 * * * * cd /home/myname/mywebsite; /usr/bin/php bin/worker.php
151
152 You can generally find the location of PHP by executing "which php".
153 If you run into trouble with this section please contact your hosting provider for assistance.
154 Friendica will not work correctly if you cannot perform this step.
155
156 If it is not possible to set up a cron job then please activate the "frontend worker" in the administration interface.
157
158 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
159
160 ### Set up a backup plan
161
162 Bad things will happen.
163 Let there be a hardware failure, a corrupted database or whatever you can think of.
164 So once the installation of your Friendica node is done, you should make yourself a backup plan.
165
166 The most important file is the `config/local.ini.php` file.
167 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.