]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - INSTALL
INSTALL docs updated, htaccess.sample more generic
[quix0rs-gnu-social.git] / INSTALL
1 Prerequisites
2 =============
3
4 The following software packages are *required* for this software to
5 run correctly.
6
7 - PHP 5.3+      For newer versions, some functions that are used may be
8                 disabled by default, such as the pcntl_* family. See the
9                 section on 'Queues and daemons' for more information.
10 - MariaDB 5.x   GNU Social uses, by default, a MariaDB server for data
11                 storage. Versions 5.x and 10.x have both reportedly
12                 worked well. It is also possible to run MySQL 5.x.
13 - Web server    Apache, lighttpd and nginx will all work. CGI mode is
14                 recommended and also some variant of 'suexec' (or a
15                 proper setup php-fpm pool)
16                 NOTE: mod_rewrite or its equivalent is extremely useful.
17
18 Your PHP installation must include the following PHP extensions for a
19 functional setup of GNU Social:
20
21 - Curl          Fetching files by HTTP.
22 - XMLWriter     For formatting XML and HTML output.
23 - mysqlnd       The native driver for PHP5 MySQL/MariaDB connections.
24 - GD            Image manipulation (scaling).
25 - mbstring      For handling Unicode (UTF-8) encoded strings.
26 - bcmath or gmp For Salmon signatures (part of OStatus)
27
28 Better performance
29 ------------------
30
31 For some functionality, you will also need the following extensions:
32
33 - memcache      A client for the memcached server, which caches database
34                 information in volatile memory. This is important for
35                 adequate performance on high-traffic sites. You will
36                 also need a memcached server to store the data in.
37 - mailparse     Efficient parsing of email requires this extension.
38                 Submission by email or SMS-over-email uses this.
39 - sphinx        A client for the sphinx server, an alternative to MySQL
40                 or Postgresql fulltext search. You will also need a
41                 Sphinx server to serve the search queries.
42 - gettext       For multiple languages. Default on many PHP installs;
43                 will be emulated if not present.
44
45 You may also experience better performance from your site if you install
46 a PHP bytecode cache/accelerator. Currently the recommended cache module
47 is 'xcache', which after installation (php5-xcache) can be enabled in
48 your site's config.php with:
49
50     addPlugin('XCache');
51
52 External libraries
53 ------------------
54
55 A number of external PHP libraries are used to provide basic
56 functionality and optional functionality for your system. For your
57 convenience, they are available in the "extlib" directory of this
58 package, and you do not have to download and install them. However,
59 you may want to keep them up-to-date with the latest upstream version,
60 and the URLs are listed here for your convenience.
61
62 - DB_DataObject http://pear.php.net/package/DB_DataObject
63 - Validate http://pear.php.net/package/Validate
64 - OpenID by Janrain, http://janrain.com/openid-enabled/
65 - PEAR DB. Although this is an older data access system (new
66   packages should use PDO), the OpenID libraries depend on PEAR DB
67   or MDB2.
68 - OAuth.php from http://oauth.googlecode.com/svn/code/php/
69 - markdown.php from http://michelf.com/projects/php-markdown/
70 - PEAR Mail, for sending out mail notifications
71   http://pear.php.net/package/Mail
72 - PEAR Net_SMTP, if you use the SMTP factory for notifications
73   http://pear.php.net/package/Net_SMTP
74 - PEAR Net_Socket, if you use the SMTP factory for notifications
75   http://pear.php.net/package/Net_Socket
76 - XMPPHP, the follow-up to Class.Jabber.php. Probably the best XMPP
77   library available for PHP. http://xmpphp.googlecode.com/. Note that
78   as of this writing the version of this library that is available in
79   the extlib directory is *significantly different* from the upstream
80   version (patches have been submitted). Upgrading to the upstream
81   version may render your StatusNet site unable to send or receive XMPP
82   messages.
83 - Facebook library. Used for the Facebook application.
84 - PEAR Validate is used for URL and email validation.
85 - Console_GetOpt for parsing command-line options.
86   predecessor to OStatus.
87 - HTTP_Request2, a library for making HTTP requests.
88 - PEAR Net_URL2 is an HTTP_Request2 dependency.
89
90 A design goal of GNU Social is that the basic Web functionality should
91 work on even the most restrictive commercial hosting services.
92 However, additional functionality, such as receiving messages by XMPP,
93 require that you be able to run long-running processes on your account.
94 In addition, posting by email require that you be able to install a mail
95 filter in your mail server.
96
97 Installation
98 ============
99
100 Installing the basic GNU Social web component is relatively easy,
101 especially if you've previously installed PHP/MariaDB packages.
102
103 1. Unpack the tarball you downloaded on your Web server. Usually a
104    command like this will work:
105
106        tar zxf gnusocial-*.tar.gz
107
108    ...which will make a gnusocial-x.y.z subdirectory in your current
109    directory. (If you don't have shell access on your Web server, you
110    may have to unpack the tarball on your local computer and FTP the
111    files to the server.)
112
113 2. Move the tarball to a directory of your choosing in your Web root
114    directory. Usually something like this will work:
115
116        mv gnusocial-x.y.z /var/www/gnusocial
117
118    This will often make your GNU Social instance available in the gnusocial
119    path of your server, like "http://example.net/gnusocial". "social" or
120    "blog" might also be good path names. If you know how to configure 
121    virtual hosts on your web server, you can try setting up
122    "http://social.example.net/" or the like.
123
124    If you have "rewrite" support on your webserver, and you should,
125    then please enable this in order to make full use of your site. This
126    will enable "Fancy URL" support, which you can read more about if you
127    scroll down a bit in this document.
128
129 3. Make your target directory writeable by the Web server.
130
131        chmod a+w /var/www/gnusocial/
132
133    On some systems, this will probably work:
134
135        chgrp www-data /var/www/gnusocial/
136        chmod g+w /var/www/gnusocial/
137
138    If your Web server runs as another user besides "www-data", try
139    that user's default group instead. As a last resort, you can create
140    a new group like "gnusocial" and add the Web server's user to the group.
141
142 4. You should also take this moment to make your avatar, background, and
143    file subdirectories writeable by the Web server. An insecure way to do
144    this is:
145
146        chmod a+w /var/www/gnusocial/avatar
147        chmod a+w /var/www/gnusocial/background
148        chmod a+w /var/www/gnusocial/file
149
150    You can also make the avatar, background, and file directories
151    writeable by the Web server group, as noted above.
152
153 5. Create a database to hold your site data. Something like this
154    should work:
155
156        mysqladmin -u "root" --password="rootpassword" create gnusocial
157
158    Note that GNU Social should have its own database; you should not share
159    the database with another program. You can name it whatever you want,
160    though.
161
162    (If you don't have shell access to your server, you may need to use
163    a tool like phpMyAdmin to create a database. Check your hosting
164    service's documentation for how to create a new MariaDB database.)
165
166 6. Create a new database account that GNU Social will use to access the
167    database. If you have shell access, this will probably work from the
168    MariaDB shell:
169
170        GRANT ALL on gnusocial.*
171        TO 'gnusocial'@'localhost'
172        IDENTIFIED BY 'agoodpassword';
173
174    You should change the user identifier 'gnusocial' and 'agoodpassword'
175    to your preferred new database username and password. You may want to
176    test logging in to MariaDB as this new user.
177
178 7. In a browser, navigate to the GNU Social install script; something like:
179
180        http://social.example.net/install.php
181
182    Enter the database connection information and your site name. The
183    install program will configure your site and install the initial,
184    almost-empty database.
185
186 8. You should now be able to navigate to your social site's main directory
187    and see the "Public Timeline", which will probably be empty. You can
188    now register new user, post some notices, edit your profile, etc.
189
190 Fancy URLs
191 ----------
192
193 By default, GNU Social will use URLs that include the main PHP program's
194 name in them. For example, a user's home profile might be found at:
195
196     http://example.net/gnusocial/index.php/gnusocial/fred
197
198 On certain systems that don't support this kind of syntax, they'll
199 look like this:
200
201     http://example.net/gnusocial/index.php?p=gnusocial/fred
202
203 It's possible to configure the software so it looks like this instead:
204
205     http://example.net/gnusocial/fred
206
207 These "fancy URLs" are more readable and memorable for users. To use
208 fancy URLs, you must either have Apache 2.x with .htaccess enabled and
209 mod_rewrite enabled, -OR- know how to configure "url redirection" in
210 your server (like lighttpd or nginx).
211
212 1. Copy the htaccess.sample file to .htaccess in your StatusNet
213    directory.
214
215 2. Change the "RewriteBase" in the new .htaccess file to be the URL path
216    to your GNU Social installation on your server. Typically this will
217    be the path to your GNU Social directory relative to your Web root.
218    If you are installing it in the root directory, leave it as '/'.
219
220 3. Add, uncomment or change a line in your config.php file so it says:
221
222        $config['site']['fancy'] = true;
223
224 You should now be able to navigate to a "fancy" URL on your server,
225 like:
226
227     http://example.net/gnusocial/main/register
228
229 If you changed your HTTP server configuration, you may need to restart
230 the server first.
231
232 If it doesn't work, double-check that AllowOverride for the GNU Social
233 directory is 'All' in your Apache configuration file. This is usually
234 /etc/httpd.conf, /etc/apache/httpd.conf, or (on Debian and Ubuntu)
235 /etc/apache2/sites-available/default. See the Apache documentation for
236 .htaccess files for more details:
237
238     http://httpd.apache.org/docs/2.2/howto/htaccess.html
239
240 Also, check that mod_rewrite is installed and enabled:
241
242     http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html
243
244 Sphinx
245 ------
246
247 To use a Sphinx server to search users and notices, you'll need to
248 enable the SphinxSearch plugin. Add to your config.php:
249
250     addPlugin('SphinxSearch');
251     $config['sphinx']['server'] = 'searchhost.local';
252
253 You also need to install, compile and enable the sphinx pecl extension for
254 php on the client side, which itself depends on the sphinx development files.
255
256 See plugins/SphinxSearch/README for more details and server setup.
257
258 SMS
259 ---
260
261 StatusNet supports a cheap-and-dirty system for sending update messages
262 to mobile phones and for receiving updates from the mobile. Instead of
263 sending through the SMS network itself, which is costly and requires
264 buy-in from the wireless carriers, it simply piggybacks on the email
265 gateways that many carriers provide to their customers. So, SMS
266 configuration is essentially email configuration.
267
268 Each user sends to a made-up email address, which they keep a secret.
269 Incoming email that is "From" the user's SMS email address, and "To"
270 the users' secret email address on the site's domain, will be
271 converted to a notice and stored in the DB.
272
273 For this to work, there *must* be a domain or sub-domain for which all
274 (or most) incoming email can pass through the incoming mail filter.
275
276 1. Run the SQL script carrier.sql in your StatusNet database. This will
277    usually work:
278
279        mysql -u "statusnetuser" --password="statusnetpassword" statusnet < db/carrier.sql
280
281    This will populate your database with a list of wireless carriers
282    that support email SMS gateways.
283
284 2. Make sure the maildaemon.php file is executable:
285
286        chmod +x scripts/maildaemon.php
287
288    Note that "daemon" is kind of a misnomer here; the script is more
289    of a filter than a daemon.
290
291 2. Edit /etc/aliases on your mail server and add the following line:
292
293        *: /path/to/statusnet/scripts/maildaemon.php
294
295 3. Run whatever code you need to to update your aliases database. For
296    many mail servers (Postfix, Exim, Sendmail), this should work:
297
298        newaliases
299
300    You may need to restart your mail server for the new database to
301    take effect.
302
303 4. Set the following in your config.php file:
304
305        $config['mail']['domain'] = 'yourdomain.example.net';
306
307 At this point, post-by-email and post-by-SMS-gateway should work. Note
308 that if your mail server is on a different computer from your email
309 server, you'll need to have a full installation of StatusNet, a working
310 config.php, and access to the StatusNet database from the mail server.
311
312 XMPP
313 ----
314
315 XMPP (eXtended Message and Presence Protocol, <http://xmpp.org/>) is the
316 instant-messenger protocol that drives Jabber and GTalk IM. You can
317 distribute messages via XMPP using the system below; however, you
318 need to run the XMPP incoming daemon to allow incoming messages as
319 well.
320
321 1. You may want to strongly consider setting up your own XMPP server.
322    Ejabberd, OpenFire, and JabberD are all Open Source servers.
323    Jabber, Inc. provides a high-performance commercial server.
324
325 2. You must register a Jabber ID (JID) with your new server. It helps
326    to choose a name like "update@example.com" or "notice" or something
327    similar.  Alternately, your "update JID" can be registered on a
328    publicly-available XMPP service, like jabber.org or GTalk.
329
330    StatusNet will not register the JID with your chosen XMPP server;
331    you need to do this manually, with an XMPP client like Gajim,
332    Telepathy, or Pidgin.im.
333
334 3. Configure your site's XMPP variables, as described below in the
335    configuration section.
336
337 On a default installation, your site can broadcast messages using
338 XMPP. Users won't be able to post messages using XMPP unless you've
339 got the XMPP daemon running.  See 'Queues and daemons' below for how
340 to set that up. Also, once you have a sizable number of users, sending
341 a lot of SMS, OStatus, and XMPP messages whenever someone posts a message
342 can really slow down your site; it may cause posting to timeout.
343
344 NOTE: stream_select(), a crucial function for network programming, is
345 broken on PHP 5.2.x less than 5.2.6 on amd64-based servers. We don't
346 work around this bug in StatusNet; current recommendation is to move
347 off of amd64 to another server.
348
349 Public feed
350 -----------
351
352 You can send *all* messages from your social networking site to a
353 third-party service using XMPP. This can be useful for providing
354 search, indexing, bridging, or other cool services.
355
356 To configure a downstream site to receive your public stream, add
357 their "JID" (Jabber ID) to your config.php as follows:
358
359     $config['xmpp']['public'][] = 'downstream@example.net';
360
361 (Don't miss those square brackets at the end.) Note that your XMPP
362 broadcasting must be configured as mentioned above. Although you can
363 send out messages at "Web time", high-volume sites should strongly
364 consider setting up queues and daemons.
365
366 Queues and daemons
367 ------------------
368
369 Some activities that StatusNet needs to do, like broadcast OStatus, SMS,
370 and XMPP messages, can be 'queued' and done by off-line bots instead.
371 For this to work, you must be able to run long-running offline
372 processes, either on your main Web server or on another server you
373 control. (Your other server will still need all the above
374 prerequisites, with the exception of Apache.) Installing on a separate
375 server is probably a good idea for high-volume sites.
376
377 1. You'll need the "CLI" (command-line interface) version of PHP
378    installed on whatever server you use.
379
380    Modern PHP versions in some operating systems have disabled functions
381    related to forking, which is required for daemons to operate. To make
382    this work, make sure that your php-cli config (/etc/php5/cli/php.ini)
383    does NOT have these functions listed under 'disable_functions':
384
385        * pcntl_fork, pcntl_wait, pcntl_wifexited, pcntl_wexitstatus,
386          pcntl_wifsignaled, pcntl_wtermsig
387
388    Other recommended settings for optimal performance are:
389        * mysqli.allow_persistent = On
390        * mysqli.reconnect = On
391
392 2. If you're using a separate server for queues, install StatusNet
393    somewhere on the server. You don't need to worry about the
394    .htaccess file, but make sure that your config.php file is close
395    to, or identical to, your Web server's version.
396
397 3. In your config.php files (both the Web server and the queues
398    server!), set the following variable:
399
400        $config['queue']['enabled'] = true;
401
402    You may also want to look at the 'daemon' section of this file for
403    more daemon options. Note that if you set the 'user' and/or 'group'
404    options, you'll need to create that user and/or group by hand.
405    They're not created automatically.
406
407 4. On the queues server, run the command scripts/startdaemons.sh.
408
409 This will run the queue handlers:
410
411 * queuedaemon.php - polls for queued items for inbox processing and
412   pushing out to OStatus, SMS, XMPP, etc.
413 * imdaemon.php - if an IM plugin is enabled (like XMPP)
414 * other daemons that you may have enabled
415
416 These daemons will automatically restart in most cases of failure
417 including memory leaks (if a memory_limit is set), but may still die
418 or behave oddly if they lose connections to the XMPP or queue servers.
419
420 It may be a good idea to use a daemon-monitoring service, like 'monit',
421 to check their status and keep them running.
422
423 All the daemons write their process IDs (pids) to /var/run/ by
424 default. This can be useful for starting, stopping, and monitoring the
425 daemons. If you are running multiple sites on the same machine, it will
426 be necessary to avoid collisions of these PID files by setting a site-
427 specific directory in config.php:
428
429        $config['daemon']['piddir'] = __DIR__ . '/../run/';
430
431 It is also possible to use a STOMP server instead of our kind of hacky
432 home-grown DB-based queue solution. This is strongly recommended for
433 best response time, especially when using XMPP.
434
435 Themes
436 ------
437
438 Older themes (version 0.9.x and below) no longer work with StatusNet
439 1.0.x, due to major changes in the site layout. We ship with three new
440 themes for this version, 'neo', 'neo-blue' and 'neo-light'.
441
442 As of right now, your ability to change the theme is site-wide; users
443 can't choose their own theme. Additionally, the only thing you can
444 change in the theme is CSS stylesheets and some image files; you can't
445 change the HTML output, like adding or removing menu items.
446
447 You can choose a theme using the $config['site']['theme'] element in
448 the config.php file. See below for details.
449
450 You can add your own theme by making a sub-directory of the 'theme'
451 subdirectory with the name of your theme. Each theme can have the
452 following files:
453
454 display.css: a CSS2 file for "default" styling for all browsers.
455 ie6.css: a CSS2 file for override styling for fixing up Internet
456     Explorer 6.
457 ie7.css: a CSS2 file for override styling for fixing up Internet
458     Explorer 7.
459 logo.png: a logo image for the site.
460 default-avatar-profile.png: a 96x96 pixel image to use as the avatar for
461     users who don't upload their own.
462 default-avatar-stream.png: Ditto, but 48x48. For streams of notices.
463 default-avatar-mini.png: Ditto ditto, but 24x24. For subscriptions
464     listing on profile pages.
465
466 You may want to start by copying the files from the default theme to
467 your own directory.
468
469 Translation
470 -----------
471
472 Translations in StatusNet use the gettext system <http://www.gnu.org/software/gettext/>.
473 Theoretically, you can add your own sub-directory to the locale/
474 subdirectory to add a new language to your system. You'll need to
475 compile the ".po" files into ".mo" files, however.
476
477 Contributions of translation information to StatusNet are very easy:
478 you can use the Web interface at translatewiki.net to add one
479 or a few or lots of new translations -- or even new languages. You can
480 also download more up-to-date .po files there, if you so desire.
481
482 For info on helping with translations, see http://status.net/wiki/Translations
483
484 Backups
485 -------
486
487 There is no built-in system for doing backups in StatusNet. You can make
488 backups of a working StatusNet system by backing up the database and
489 the Web directory. To backup the database use mysqldump <http://ur1.ca/7xo>
490 and to backup the Web directory, try tar.
491
492 Private
493 -------
494
495 The administrator can set the "private" flag for a site so that it's
496 not visible to non-logged-in users. (This is the default for new installs of version 1.0!)
497
498 This might be useful for workgroups who want to share a social
499 networking site for project management, but host it on a public
500 server.
501
502 Total privacy is attempted but not guaranteed or ensured. Private sites
503 currently don't work well with OStatus federation.
504
505 Access to file attachments can also be restricted to logged-in users only.
506
507 1. Add a directory outside the web root where your file uploads will be
508    stored. Usually a command like this will work:
509
510        mkdir /var/www/statusnet-files
511
512 2. Make the file uploads directory writeable by the web server. An
513    insecure way to do this is:
514
515        chmod a+x /var/www/statusnet-files
516
517 3. Tell StatusNet to use this directory for file uploads. Add a line
518    like this to your config.php:
519
520        $config['attachments']['dir'] = '/var/www/statusnet-files';