]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - README
Merge branch 'master' of gitorious.org:statusnet/mainline
[quix0rs-gnu-social.git] / README
1 ------
2 README
3 ------
4
5 StatusNet 0.9.2 ("King of Birds")
6 21 Apr 2010
7
8 This is the README file for StatusNet, the Open Source microblogging
9 platform. It includes installation instructions, descriptions of
10 options you can set, warnings, tips, and general info for
11 administrators. Information on using StatusNet can be found in the
12 "doc" subdirectory or in the "help" section on-line.
13
14 About
15 =====
16
17 StatusNet is a Free and Open Source microblogging platform. It helps
18 people in a community, company or group to exchange short (140
19 characters, by default) messages over the Web. Users can choose which
20 people to "follow" and receive only their friends' or colleagues'
21 status messages. It provides a similar service to sites like Twitter,
22 Google Buzz, or Yammer.
23
24 With a little work, status messages can be sent to mobile phones,
25 instant messenger programs (GTalk/Jabber), and specially-designed
26 desktop clients that support the Twitter API.
27
28 StatusNet supports an open standard called OStatus
29 <http://ostatus.org/> that lets users in different networks follow
30 each other. It enables a distributed social network spread all across
31 the Web.
32
33 StatusNet was originally developed for the Open Software Service,
34 Identi.ca <http://identi.ca/>. It is shared with you in hope that you
35 too make an Open Software Service available to your users. To learn
36 more, please see the Open Software Service Definition 1.1:
37
38     http://www.opendefinition.org/ossd
39
40 StatusNet, Inc. <http://status.net/> also offers this software as a
41 Web service, requiring no installation on your part. The software run
42 on status.net is identical to the software available for download, so
43 you can move back and forth between a hosted version or a version
44 installed on your own servers.
45
46 License
47 =======
48
49 This program is free software: you can redistribute it and/or modify
50 it under the terms of the GNU Affero General Public License as
51 published by the Free Software Foundation, either version 3 of the
52 License, or (at your option) any later version.
53
54 This program is distributed in the hope that it will be useful, but
55 WITHOUT ANY WARRANTY; without even the implied warranty of
56 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
57 Affero General Public License for more details.
58
59 You should have received a copy of the GNU Affero General Public
60 License along with this program, in the file "COPYING".  If not, see
61 <http://www.gnu.org/licenses/>.
62
63     IMPORTANT NOTE: The GNU Affero General Public License (AGPL) has
64     *different requirements* from the "regular" GPL. In particular, if
65     you make modifications to the StatusNet source code on your server,
66     you *MUST MAKE AVAILABLE* the modified version of the source code
67     to your users under the same license. This is a legal requirement
68     of using the software, and if you do not wish to share your
69     modifications, *YOU MAY NOT INSTALL STATUSNET*.
70
71 Additional library software has been made available in the 'extlib'
72 directory. All of it is Free Software and can be distributed under
73 liberal terms, but those terms may differ in detail from the AGPL's
74 particulars. See each package's license file in the extlib directory
75 for additional terms.
76
77 New this version
78 ================
79
80 This is a minor bug and feature release since version 0.9.1 released 28 
81 March 2010.
82
83 Because of fixes to OStatus bugs, it is highly recommended that all
84 public sites upgrade to the new version immediately.
85
86 Notable changes this version:
87
88 - Fixed email notifications for @-replies that come in via OStatus
89 - OStatus related Fixes to the cloudy theme 
90 - Pass geo locations over Twitter bridge (will only be used if enabled on the Twitter side)
91 - scripts/showplugins.php - script to dump the list of activated plugins and their settings
92 - scripts/fixup_blocks.php - script to finds any stray subscriptions in violation of blocks, and removes them
93 - Allow blocking someone who's not currently subscribed to you (prevents seeing @-replies from them, or them subbing to you in future)
94 - Default 2-second timeout on Geonames web service lookups 
95 - Improved localization for plugins
96 - New anti-spam measures: added nofollow rels to group members list, subscribers list
97 - Shared cache key option for Geonames plugin (lets multi-instance sites share their cached geoname lookups)
98 - Stability fixes to the TwitterStatusFetcher
99 - If user allows location sharing but turned off browser location use profile location
100 - Improved group listing via the API
101 - Improved FOAF output
102 - Several other bugfixes
103
104 A full changelog is available at http://status.net/wiki/StatusNet_0.9.2.
105
106 Prerequisites
107 =============
108
109 The following software packages are *required* for this software to
110 run correctly.
111
112 - PHP 5.2.3+. It may be possible to run this software on earlier
113   versions of PHP, but many of the functions used are only available
114   in PHP 5.2 or above. 5.2.6 or later is needed for XMPP background
115   daemons on 64-bit platforms. PHP 5.3.x should work but is known
116   to cause some failures for OpenID.
117 - MySQL 5.x. The StatusNet database is stored, by default, in a MySQL
118   server. It has been primarily tested on 5.x servers, although it may
119   be possible to install on earlier (or later!) versions. The server
120   *must* support the MyISAM storage engine -- the default for most
121   MySQL servers -- *and* the InnoDB storage engine.
122 - A Web server. Preferably, you should have Apache 2.2.x with the
123   mod_rewrite extension installed and enabled.
124
125 Your PHP installation must include the following PHP extensions:
126
127 - Curl. This is for fetching files by HTTP.
128 - XMLWriter. This is for formatting XML and HTML output.
129 - MySQL. For accessing the database.
130 - GD. For scaling down avatar images.
131 - mbstring. For handling Unicode (UTF-8) encoded strings.
132 - gettext. For multiple languages. Default on many PHP installs.
133
134 For some functionality, you will also need the following extensions:
135
136 - Memcache. A client for the memcached server, which caches database
137   information in volatile memory. This is important for adequate
138   performance on high-traffic sites. You will also need a memcached
139   server to store the data in.
140 - Mailparse. Efficient parsing of email requires this extension.
141   Submission by email or SMS-over-email uses this extension.
142 - Sphinx Search. A client for the sphinx server, an alternative
143   to MySQL or Postgresql fulltext search. You will also need a
144   Sphinx server to serve the search queries.
145 - bcmath or gmp. For Salmon signatures (part of OStatus). Needed
146   if you have OStatus configured.
147
148 You will almost definitely get 2-3 times better performance from your
149 site if you install a PHP bytecode cache/accelerator. Some well-known
150 examples are: eaccelerator, Turck mmcache, xcache, apc. Zend Optimizer
151 is a proprietary accelerator installed on some hosting sites.
152
153 External libraries
154 ------------------
155
156 A number of external PHP libraries are used to provide basic
157 functionality and optional functionality for your system. For your
158 convenience, they are available in the "extlib" directory of this
159 package, and you do not have to download and install them. However,
160 you may want to keep them up-to-date with the latest upstream version,
161 and the URLs are listed here for your convenience.
162
163 - DB_DataObject http://pear.php.net/package/DB_DataObject
164 - Validate http://pear.php.net/package/Validate
165 - OpenID from OpenIDEnabled (not the PEAR version!). We decided
166   to use the openidenabled.com version since it's more widely
167   implemented, and seems to be better supported.
168   http://openidenabled.com/php-openid/
169 - PEAR DB. Although this is an older data access system (new
170   packages should probably use PHP DBO), the OpenID libraries
171   depend on PEAR DB so we use it here, too. DB_DataObject can
172   also use PEAR MDB2, which may give you better performance
173   but won't work with OpenID.
174   http://pear.php.net/package/DB
175 - OAuth.php from http://oauth.googlecode.com/svn/code/php/
176 - markdown.php from http://michelf.com/projects/php-markdown/
177 - PEAR Mail, for sending out mail notifications
178   http://pear.php.net/package/Mail
179 - PEAR Net_SMTP, if you use the SMTP factory for notifications
180   http://pear.php.net/package/Net_SMTP
181 - PEAR Net_Socket, if you use the SMTP factory for notifications
182   http://pear.php.net/package/Net_Socket
183 - XMPPHP, the follow-up to Class.Jabber.php. Probably the best XMPP
184   library available for PHP. http://xmpphp.googlecode.com/. Note that
185   as of this writing the version of this library that is available in
186   the extlib directory is *significantly different* from the upstream
187   version (patches have been submitted). Upgrading to the upstream
188   version may render your StatusNet site unable to send or receive XMPP
189   messages.
190 - Facebook library. Used for the Facebook application.
191 - PEAR Services_oEmbed. Used for some multimedia integration.
192 - PEAR HTTP_Request is an oEmbed dependency.
193 - PEAR Validate is an oEmbed dependency.
194 - PEAR Net_URL2 is an oEmbed dependency.
195 - Console_GetOpt for parsing command-line options.
196 - libomb. a library for implementing OpenMicroBlogging 0.1, the
197   predecessor to OStatus.
198 - HTTP_Request2, a library for making HTTP requests.
199
200 A design goal of StatusNet is that the basic Web functionality should
201 work on even the most restrictive commercial hosting services.
202 However, additional functionality, such as receiving messages by
203 Jabber/GTalk, require that you be able to run long-running processes
204 on your account. In addition, posting by email or from SMS require
205 that you be able to install a mail filter in your mail server.
206
207 Installation
208 ============
209
210 Installing the basic StatusNet Web component is relatively easy,
211 especially if you've previously installed PHP/MySQL packages.
212
213 1. Unpack the tarball you downloaded on your Web server. Usually a
214    command like this will work:
215
216        tar zxf statusnet-0.9.2.tar.gz
217
218    ...which will make a statusnet-0.9.2 subdirectory in your current
219    directory. (If you don't have shell access on your Web server, you
220    may have to unpack the tarball on your local computer and FTP the
221    files to the server.)
222
223 2. Move the tarball to a directory of your choosing in your Web root
224    directory. Usually something like this will work:
225
226        mv statusnet-0.9.2 /var/www/statusnet
227
228    This will make your StatusNet instance available in the statusnet path of
229    your server, like "http://example.net/statusnet". "microblog" or
230    "statusnet" might also be good path names. If you know how to
231    configure virtual hosts on your web server, you can try setting up
232    "http://micro.example.net/" or the like.
233
234 3. Make your target directory writeable by the Web server.
235
236        chmod a+w /var/www/statusnet/
237
238    On some systems, this will probably work:
239
240        chgrp www-data /var/www/statusnet/
241        chmod g+w /var/www/statusnet/
242
243    If your Web server runs as another user besides "www-data", try
244    that user's default group instead. As a last resort, you can create
245    a new group like "statusnet" and add the Web server's user to the group.
246
247 4. You should also take this moment to make your avatar, background, and
248    file subdirectories writeable by the Web server. An insecure way to do
249    this is:
250
251        chmod a+w /var/www/statusnet/avatar
252        chmod a+w /var/www/statusnet/background
253        chmod a+w /var/www/statusnet/file
254
255    You can also make the avatar, background, and file directories
256    writeable by the Web server group, as noted above.
257
258 5. Create a database to hold your microblog data. Something like this
259    should work:
260
261        mysqladmin -u "username" --password="password" create statusnet
262
263    Note that StatusNet must have its own database; you can't share the
264    database with another program. You can name it whatever you want,
265    though.
266
267    (If you don't have shell access to your server, you may need to use
268    a tool like PHPAdmin to create a database. Check your hosting
269    service's documentation for how to create a new MySQL database.)
270
271 6. Create a new database account that StatusNet will use to access the
272    database. If you have shell access, this will probably work from the
273    MySQL shell:
274
275        GRANT ALL on statusnet.*
276        TO 'statusnetuser'@'localhost'
277        IDENTIFIED BY 'statusnetpassword';
278
279    You should change 'statusnetuser' and 'statusnetpassword' to your preferred new
280    username and password. You may want to test logging in to MySQL as
281    this new user.
282
283 7. In a browser, navigate to the StatusNet install script; something like:
284
285        http://yourserver.example.com/statusnet/install.php
286
287    Enter the database connection information and your site name. The
288    install program will configure your site and install the initial,
289    almost-empty database.
290
291 8. You should now be able to navigate to your microblog's main directory
292    and see the "Public Timeline", which will be empty. If not, magic
293    has happened! You can now register a new user, post some notices,
294    edit your profile, etc. However, you may want to wait to do that stuff
295    if you think you can set up "fancy URLs" (see below), since some
296    URLs are stored in the database.
297
298 Fancy URLs
299 ----------
300
301 By default, StatusNet will use URLs that include the main PHP program's
302 name in them. For example, a user's home profile might be
303 found at:
304
305     http://example.org/statusnet/index.php/statusnet/fred
306
307 On certain systems that don't support this kind of syntax, they'll
308 look like this:
309
310     http://example.org/statusnet/index.php?p=statusnet/fred
311
312 It's possible to configure the software so it looks like this instead:
313
314     http://example.org/statusnet/fred
315
316 These "fancy URLs" are more readable and memorable for users. To use
317 fancy URLs, you must either have Apache 2.x with .htaccess enabled and
318 mod_rewrite enabled, -OR- know how to configure "url redirection" in
319 your server.
320
321 1. Copy the htaccess.sample file to .htaccess in your StatusNet
322    directory. Note: if you have control of your server's httpd.conf or
323    similar configuration files, it can greatly improve performance to
324    import the .htaccess file into your conf file instead. If you're
325    not sure how to do it, you may save yourself a lot of headache by
326    just leaving the .htaccess file.
327
328 2. Change the "RewriteBase" in the new .htaccess file to be the URL path
329    to your StatusNet installation on your server. Typically this will
330    be the path to your StatusNet directory relative to your Web root.
331
332 3. Add or uncomment or change a line in your config.php file so it says:
333
334        $config['site']['fancy'] = true;
335
336 You should now be able to navigate to a "fancy" URL on your server,
337 like:
338
339     http://example.net/statusnet/main/register
340
341 If you changed your HTTP server configuration, you may need to restart
342 the server first.
343
344 If it doesn't work, double-check that AllowOverride for the StatusNet
345 directory is 'All' in your Apache configuration file. This is usually
346 /etc/httpd.conf, /etc/apache/httpd.conf, or (on Debian and Ubuntu)
347 /etc/apache2/sites-available/default. See the Apache documentation for
348 .htaccess files for more details:
349
350     http://httpd.apache.org/docs/2.2/howto/htaccess.html
351
352 Also, check that mod_rewrite is installed and enabled:
353
354     http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html
355
356 Sphinx
357 ------
358
359 To use a Sphinx server to search users and notices, you'll need to
360 enable the SphinxSearch plugin. Add to your config.php:
361
362     addPlugin('SphinxSearch');
363     $config['sphinx']['server'] = 'searchhost.local';
364
365 You also need to install, compile and enable the sphinx pecl extension for
366 php on the client side, which itself depends on the sphinx development files.
367
368 See plugins/SphinxSearch/README for more details and server setup.
369
370 SMS
371 ---
372
373 StatusNet supports a cheap-and-dirty system for sending update messages
374 to mobile phones and for receiving updates from the mobile. Instead of
375 sending through the SMS network itself, which is costly and requires
376 buy-in from the wireless carriers, it simply piggybacks on the email
377 gateways that many carriers provide to their customers. So, SMS
378 configuration is essentially email configuration.
379
380 Each user sends to a made-up email address, which they keep a secret.
381 Incoming email that is "From" the user's SMS email address, and "To"
382 the users' secret email address on the site's domain, will be
383 converted to a notice and stored in the DB.
384
385 For this to work, there *must* be a domain or sub-domain for which all
386 (or most) incoming email can pass through the incoming mail filter.
387
388 1. Run the SQL script carrier.sql in your StatusNet database. This will
389    usually work:
390
391        mysql -u "statusnetuser" --password="statusnetpassword" statusnet < db/carrier.sql
392
393    This will populate your database with a list of wireless carriers
394    that support email SMS gateways.
395
396 2. Make sure the maildaemon.php file is executable:
397
398        chmod +x scripts/maildaemon.php
399
400    Note that "daemon" is kind of a misnomer here; the script is more
401    of a filter than a daemon.
402
403 2. Edit /etc/aliases on your mail server and add the following line:
404
405        *: /path/to/statusnet/scripts/maildaemon.php
406
407 3. Run whatever code you need to to update your aliases database. For
408    many mail servers (Postfix, Exim, Sendmail), this should work:
409
410        newaliases
411
412    You may need to restart your mail server for the new database to
413    take effect.
414
415 4. Set the following in your config.php file:
416
417        $config['mail']['domain'] = 'yourdomain.example.net';
418
419 At this point, post-by-email and post-by-SMS-gateway should work. Note
420 that if your mail server is on a different computer from your email
421 server, you'll need to have a full installation of StatusNet, a working
422 config.php, and access to the StatusNet database from the mail server.
423
424 XMPP
425 ----
426
427 XMPP (eXtended Message and Presence Protocol, <http://xmpp.org/>) is the
428 instant-messenger protocol that drives Jabber and GTalk IM. You can
429 distribute messages via XMPP using the system below; however, you
430 need to run the XMPP incoming daemon to allow incoming messages as
431 well.
432
433 1. You may want to strongly consider setting up your own XMPP server.
434    Ejabberd, OpenFire, and JabberD are all Open Source servers.
435    Jabber, Inc. provides a high-performance commercial server.
436
437 2. You must register a Jabber ID (JID) with your new server. It helps
438    to choose a name like "update@example.com" or "notice" or something
439    similar.  Alternately, your "update JID" can be registered on a
440    publicly-available XMPP service, like jabber.org or GTalk.
441
442    StatusNet will not register the JID with your chosen XMPP server;
443    you need to do this manually, with an XMPP client like Gajim,
444    Telepathy, or Pidgin.im.
445
446 3. Configure your site's XMPP variables, as described below in the
447    configuration section.
448
449 On a default installation, your site can broadcast messages using
450 XMPP. Users won't be able to post messages using XMPP unless you've
451 got the XMPP daemon running.  See 'Queues and daemons' below for how
452 to set that up. Also, once you have a sizable number of users, sending
453 a lot of SMS, OMB, and XMPP messages whenever someone posts a message
454 can really slow down your site; it may cause posting to timeout.
455
456 NOTE: stream_select(), a crucial function for network programming, is
457 broken on PHP 5.2.x less than 5.2.6 on amd64-based servers. We don't
458 work around this bug in StatusNet; current recommendation is to move
459 off of amd64 to another server.
460
461 Public feed
462 -----------
463
464 You can send *all* messages from your microblogging site to a
465 third-party service using XMPP. This can be useful for providing
466 search, indexing, bridging, or other cool services.
467
468 To configure a downstream site to receive your public stream, add
469 their "JID" (Jabber ID) to your config.php as follows:
470
471     $config['xmpp']['public'][] = 'downstream@example.net';
472
473 (Don't miss those square brackets at the end.) Note that your XMPP
474 broadcasting must be configured as mentioned above. Although you can
475 send out messages at "Web time", high-volume sites should strongly
476 consider setting up queues and daemons.
477
478 Queues and daemons
479 ------------------
480
481 Some activities that StatusNet needs to do, like broadcast OStatus, SMS,
482 and XMPP messages, can be 'queued' and done by off-line bots instead.
483 For this to work, you must be able to run long-running offline
484 processes, either on your main Web server or on another server you
485 control. (Your other server will still need all the above
486 prerequisites, with the exception of Apache.) Installing on a separate
487 server is probably a good idea for high-volume sites.
488
489 1. You'll need the "CLI" (command-line interface) version of PHP
490    installed on whatever server you use.
491
492 2. If you're using a separate server for queues, install StatusNet
493    somewhere on the server. You don't need to worry about the
494    .htaccess file, but make sure that your config.php file is close
495    to, or identical to, your Web server's version.
496
497 3. In your config.php files (both the Web server and the queues
498    server!), set the following variable:
499
500        $config['queue']['enabled'] = true;
501
502    You may also want to look at the 'daemon' section of this file for
503    more daemon options. Note that if you set the 'user' and/or 'group'
504    options, you'll need to create that user and/or group by hand.
505    They're not created automatically.
506
507 4. On the queues server, run the command scripts/startdaemons.sh.
508
509 This will run the queue handlers:
510
511 * queuedaemon.php - polls for queued items for inbox processing and
512   pushing out to OStatus, SMS, XMPP, etc.
513 * xmppdaemon.php - listens for new XMPP messages from users and stores
514   them as notices in the database; also pulls queued XMPP output from
515   queuedaemon.php to push out to clients.
516
517 These two daemons will automatically restart in most cases of failure
518 including memory leaks (if a memory_limit is set), but may still die
519 or behave oddly if they lose connections to the XMPP or queue servers.
520
521 Additional daemons may be also started by this script for certain
522 plugins, such as the Twitter bridge.
523
524 It may be a good idea to use a daemon-monitoring service, like 'monit',
525 to check their status and keep them running.
526
527 All the daemons write their process IDs (pids) to /var/run/ by
528 default. This can be useful for starting, stopping, and monitoring the
529 daemons.
530
531 Since version 0.8.0, it's now possible to use a STOMP server instead of
532 our kind of hacky home-grown DB-based queue solution. This is strongly
533 recommended for best response time, especially when using XMPP.
534
535 See the "queues" config section below for how to configure to use STOMP.
536 As of this writing, the software has been tested with ActiveMQ 5.3.
537
538 Themes
539 ------
540
541 There are two themes shipped with this version of StatusNet: "identica",
542 which is what the Identi.ca site uses, and "default", which is a good
543 basis for other sites.
544
545 As of right now, your ability to change the theme is site-wide; users
546 can't choose their own theme. Additionally, the only thing you can
547 change in the theme is CSS stylesheets and some image files; you can't
548 change the HTML output, like adding or removing menu items.
549
550 You can choose a theme using the $config['site']['theme'] element in
551 the config.php file. See below for details.
552
553 You can add your own theme by making a sub-directory of the 'theme'
554 subdirectory with the name of your theme. Each theme can have the
555 following files:
556
557 display.css: a CSS2 file for "default" styling for all browsers.
558 ie6.css: a CSS2 file for override styling for fixing up Internet
559     Explorer 6.
560 ie7.css: a CSS2 file for override styling for fixing up Internet
561     Explorer 7.
562 logo.png: a logo image for the site.
563 default-avatar-profile.png: a 96x96 pixel image to use as the avatar for
564     users who don't upload their own.
565 default-avatar-stream.png: Ditto, but 48x48. For streams of notices.
566 default-avatar-mini.png: Ditto ditto, but 24x24. For subscriptions
567     listing on profile pages.
568
569 You may want to start by copying the files from the default theme to
570 your own directory.
571
572 NOTE: the HTML generated by StatusNet changed *radically* between
573 version 0.6.x and 0.7.x. Older themes will need signification
574 modification to use the new output format.
575
576 Translation
577 -----------
578
579 Translations in StatusNet use the gettext system <http://www.gnu.org/software/gettext/>.
580 Theoretically, you can add your own sub-directory to the locale/
581 subdirectory to add a new language to your system. You'll need to
582 compile the ".po" files into ".mo" files, however.
583
584 Contributions of translation information to StatusNet are very easy:
585 you can use the Web interface at TranslateWiki.net to add one
586 or a few or lots of new translations -- or even new languages. You can
587 also download more up-to-date .po files there, if you so desire.
588
589 For info on helping with translations, see http://status.net/wiki/Translations
590
591 Backups
592 -------
593
594 There is no built-in system for doing backups in StatusNet. You can make
595 backups of a working StatusNet system by backing up the database and
596 the Web directory. To backup the database use mysqldump <http://ur1.ca/7xo>
597 and to backup the Web directory, try tar.
598
599 Private
600 -------
601
602 The administrator can set the "private" flag for a site so that it's
603 not visible to non-logged-in users. This might be useful for
604 workgroups who want to share a microblogging site for project
605 management, but host it on a public server.
606
607 Total privacy is not guaranteed or ensured. Also, privacy is
608 all-or-nothing for a site; you can't have some accounts or notices
609 private, and others public. The interaction of private sites
610 with OStatus is undefined.
611
612 Access to file attachments can also be restricted to logged-in users only.
613 1. Add a directory outside the web root where your file uploads will be
614    stored. Usually a command like this will work:
615
616        mkdir /var/www/statusnet-files
617
618 2. Make the file uploads directory writeable by the web server. An
619    insecure way to do this is:
620
621        chmod a+x /var/www/statusnet-files
622
623 3. Tell StatusNet to use this directory for file uploads. Add a line
624    like this to your config.php:
625
626        $config['attachments']['dir'] = '/var/www/statusnet-files';
627
628 Upgrading
629 =========
630
631 IMPORTANT NOTE: StatusNet 0.7.4 introduced a fix for some
632 incorrectly-stored international characters ("UTF-8"). For new
633 installations, it will now store non-ASCII characters correctly.
634 However, older installations will have the incorrect storage, and will
635 consequently show up "wrong" in browsers. See below for how to deal
636 with this situation.
637
638 If you've been using StatusNet 0.7, 0.6, 0.5 or lower, or if you've
639 been tracking the "git" version of the software, you will probably
640 want to upgrade and keep your existing data. There is no automated
641 upgrade procedure in StatusNet 0.9.2. Try these step-by-step
642 instructions; read to the end first before trying them.
643
644 0. Download StatusNet and set up all the prerequisites as if you were
645    doing a new install.
646 1. Make backups of both your database and your Web directory. UNDER NO
647    CIRCUMSTANCES should you try to do an upgrade without a known-good
648    backup. You have been warned.
649 2. Shut down Web access to your site, either by turning off your Web
650    server or by redirecting all pages to a "sorry, under maintenance"
651    page.
652 3. Shut down XMPP access to your site, typically by shutting down the
653    xmppdaemon.php process and all other daemons that you're running.
654    If you've got "monit" or "cron" automatically restarting your
655    daemons, make sure to turn that off, too.
656 4. Shut down SMS and email access to your site. The easy way to do
657    this is to comment out the line piping incoming email to your
658    maildaemon.php file, and running something like "newaliases".
659 5. Once all writing processes to your site are turned off, make a
660    final backup of the Web directory and database.
661 6. Move your StatusNet directory to a backup spot, like "statusnet.bak".
662 7. Unpack your StatusNet 0.9.2 tarball and move it to "statusnet" or
663    wherever your code used to be.
664 8. Copy the config.php file and avatar directory from your old
665    directory to your new directory.
666 9. Copy htaccess.sample to .htaccess in the new directory. Change the
667    RewriteBase to use the correct path.
668 10. Rebuild the database. (You can safely skip this step and go to #12
669     if you're upgrading from another 0.9.x version).
670
671     NOTE: this step is destructive and cannot be
672     reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't
673     do it without a known-good backup!
674
675     If your database is at version 0.8.0 or above, you can run a
676     special upgrade script:
677
678         mysql -u<rootuser> -p<rootpassword> <database> db/08to09.sql
679
680     Otherwise, go to your StatusNet directory and AFTER YOU MAKE A
681     BACKUP run the rebuilddb.sh script like this:
682
683         ./scripts/rebuilddb.sh rootuser rootpassword database db/statusnet.sql
684
685     Here, rootuser and rootpassword are the username and password for a
686     user who can drop and create databases as well as tables; typically
687     that's _not_ the user StatusNet runs as. Note that rebuilddb.sh drops
688     your database and rebuilds it; if there is an error you have no
689     database. Make sure you have a backup.
690     For PostgreSQL databases there is an equivalent, rebuilddb_psql.sh,
691     which operates slightly differently. Read the documentation in that
692     script before running it.
693 11. Use mysql or psql client to log into your database and make sure that
694     the notice, user, profile, subscription etc. tables are non-empty.
695 12. Turn back on the Web server, and check that things still work.
696 13. Turn back on XMPP bots and email maildaemon. Note that the XMPP
697     bots have changed since version 0.5; see above for details.
698
699 If you're upgrading from very old versions, you may want to look at
700 the fixup_* scripts in the scripts directories. These will store some
701 precooked data in the DB. All upgraders should check out the inboxes
702 options below.
703
704 NOTE: the database definition file, laconica.ini, has been renamed to
705 statusnet.ini (since this is the recommended database name). If you
706 have a line in your config.php pointing to the old name, you'll need
707 to update it.
708
709 Notice inboxes
710 --------------
711
712 Notice inboxes are now required. If you don't have inboxes enabled,
713 StatusNet will no longer run.
714
715 UTF-8 Database
716 --------------
717
718 StatusNet 0.7.4 introduced a fix for some incorrectly-stored
719 international characters ("UTF-8"). This fix is not
720 backwards-compatible; installations from before 0.7.4 will show
721 non-ASCII characters of old notices incorrectly. This section explains
722 what to do.
723
724 0. You can disable the new behaviour by setting the 'db''utf8' config
725    option to "false". You should only do this until you're ready to
726    convert your DB to the new format.
727 1. When you're ready to convert, you can run the fixup_utf8.php script
728    in the scripts/ subdirectory. If you've had the "new behaviour"
729    enabled (probably a good idea), you can give the ID of the first
730    "new" notice as a parameter, and only notices before that one will
731    be converted. Notices are converted in reverse chronological order,
732    so the most recent (and visible) ones will be converted first. The
733    script should work whether or not you have the 'db''utf8' config
734    option enabled.
735 2. When you're ready, set $config['db']['utf8'] to true, so that
736    new notices will be stored correctly.
737
738 Configuration options
739 =====================
740
741 The main configuration file for StatusNet (excepting configurations for
742 dependency software) is config.php in your StatusNet directory. If you
743 edit any other file in the directory, like lib/default.php (where most
744 of the defaults are defined), you will lose your configuration options
745 in any upgrade, and you will wish that you had been more careful.
746
747 Starting with version 0.9.0, a Web based configuration panel has been
748 added to StatusNet. The preferred method for changing config options is
749 to use this panel.
750
751 A command-line script, setconfig.php, can be used to set individual
752 configuration options. It's in the scripts/ directory.
753
754 Starting with version 0.7.1, you can put config files in the
755 /etc/statusnet/ directory on your server, if it exists. Config files
756 will be included in this order:
757
758 * /etc/statusnet/statusnet.php - server-wide config
759 * /etc/statusnet/<servername>.php - for a virtual host
760 * /etc/statusnet/<servername>_<pathname>.php - for a path
761 * INSTALLDIR/config.php - for a particular implementation
762
763 Almost all configuration options are made through a two-dimensional
764 associative array, cleverly named $config. A typical configuration
765 line will be:
766
767     $config['section']['option'] = value;
768
769 For brevity, the following documentation describes each section and
770 option.
771
772 site
773 ----
774
775 This section is a catch-all for site-wide variables.
776
777 name: the name of your site, like 'YourCompany Microblog'.
778 server: the server part of your site's URLs, like 'example.net'.
779 path: The path part of your site's URLs, like 'statusnet' or ''
780     (installed in root).
781 fancy: whether or not your site uses fancy URLs (see Fancy URLs
782     section above). Default is false.
783 logfile: full path to a file for StatusNet to save logging
784     information to. You may want to use this if you don't have
785     access to syslog.
786 logdebug: whether to log additional debug info like backtraces on
787     hard errors. Default false.
788 locale_path: full path to the directory for locale data. Unless you
789     store all your locale data in one place, you probably
790     don't need to use this.
791 language: default language for your site. Defaults to US English.
792     Note that this is overridden if a user is logged in and has
793     selected a different language. It is also overridden if the
794     user is NOT logged in, but their browser requests a different
795     langauge. Since pretty much everybody's browser requests a
796     language, that means that changing this setting has little or
797     no effect in practice.
798 languages: A list of languages supported on your site. Typically you'd
799     only change this if you wanted to disable support for one
800     or another language:
801     "unset($config['site']['languages']['de'])" will disable
802     support for German.
803 theme: Theme for your site (see Theme section). Two themes are
804     provided by default: 'default' and 'stoica' (the one used by
805     Identi.ca). It's appreciated if you don't use the 'stoica' theme
806     except as the basis for your own.
807 email: contact email address for your site. By default, it's extracted
808     from your Web server environment; you may want to customize it.
809 broughtbyurl: name of an organization or individual who provides the
810     service. Each page will include a link to this name in the
811     footer. A good way to link to the blog, forum, wiki,
812     corporate portal, or whoever is making the service available.
813 broughtby: text used for the "brought by" link.
814 timezone: default timezone for message display. Users can set their
815     own time zone. Defaults to 'UTC', which is a pretty good default.
816 closed: If set to 'true', will disallow registration on your site.
817     This is a cheap way to restrict accounts to only one
818     individual or group; just register the accounts you want on
819     the service, *then* set this variable to 'true'.
820 inviteonly: If set to 'true', will only allow registration if the user
821     was invited by an existing user.
822 private: If set to 'true', anonymous users will be redirected to the
823     'login' page. Also, API methods that normally require no
824     authentication will require it. Note that this does not turn
825     off registration; use 'closed' or 'inviteonly' for the
826     behaviour you want.
827 notice: A plain string that will appear on every page. A good place
828     to put introductory information about your service, or info about
829     upgrades and outages, or other community info. Any HTML will
830     be escaped.
831 logo: URL of an image file to use as the logo for the site. Overrides
832     the logo in the theme, if any.
833 ssl: Whether to use SSL and https:// URLs for some or all pages.
834     Possible values are 'always' (use it for all pages), 'never'
835     (don't use it for any pages), or 'sometimes' (use it for
836     sensitive pages that include passwords like login and registration,
837     but not for regular pages). Default to 'never'.
838 sslserver: use an alternate server name for SSL URLs, like
839     'secure.example.org'. You should be careful to set cookie
840     parameters correctly so that both the SSL server and the
841     "normal" server can access the session cookie and
842     preferably other cookies as well.
843 shorturllength: Length of URL at which URLs in a message exceeding 140
844     characters will be sent to the user's chosen
845     shortening service.
846 dupelimit: minimum time allowed for one person to say the same thing
847     twice. Default 60s. Anything lower is considered a user
848     or UI error.
849 textlimit: default max size for texts in the site. Defaults to 140.
850     0 means no limit. Can be fine-tuned for notices, messages,
851     profile bios and group descriptions.
852
853 db
854 --
855
856 This section is a reference to the configuration options for
857 DB_DataObject (see <http://ur1.ca/7xp>). The ones that you may want to
858 set are listed below for clarity.
859
860 database: a DSN (Data Source Name) for your StatusNet database. This is
861     in the format 'protocol://username:password@hostname/databasename',
862     where 'protocol' is 'mysql' or 'mysqli' (or possibly 'postgresql', if you
863     really know what you're doing), 'username' is the username,
864     'password' is the password, and etc.
865 ini_yourdbname: if your database is not named 'statusnet', you'll need
866     to set this to point to the location of the
867     statusnet.ini file. Note that the real name of your database
868     should go in there, not literally 'yourdbname'.
869 db_driver: You can try changing this to 'MDB2' to use the other driver
870     type for DB_DataObject, but note that it breaks the OpenID
871     libraries, which only support PEAR::DB.
872 debug: On a database error, you may get a message saying to set this
873     value to 5 to see debug messages in the browser. This breaks
874     just about all pages, and will also expose the username and
875     password
876 quote_identifiers: Set this to true if you're using postgresql.
877 type: either 'mysql' or 'postgresql' (used for some bits of
878     database-type-specific SQL in the code). Defaults to mysql.
879 mirror: you can set this to an array of DSNs, like the above
880     'database' value. If it's set, certain read-only actions will
881     use a random value out of this array for the database, rather
882     than the one in 'database' (actually, 'database' is overwritten).
883     You can offload a busy DB server by setting up MySQL replication
884     and adding the slaves to this array. Note that if you want some
885     requests to go to the 'database' (master) server, you'll need
886     to include it in this array, too.
887 utf8: whether to talk to the database in UTF-8 mode. This is the default
888     with new installations, but older sites may want to turn it off
889     until they get their databases fixed up. See "UTF-8 database"
890     above for details.
891 schemacheck: when to let plugins check the database schema to add
892     tables or update them. Values can be 'runtime' (default)
893     or 'script'. 'runtime' can be costly (plugins check the
894     schema on every hit, adding potentially several db
895     queries, some quite long), but not everyone knows how to
896     run a script. If you can, set this to 'script' and run
897     scripts/checkschema.php whenever you install or upgrade a
898     plugin.
899
900 syslog
901 ------
902
903 By default, StatusNet sites log error messages to the syslog facility.
904 (You can override this using the 'logfile' parameter described above).
905
906 appname: The name that StatusNet uses to log messages. By default it's
907     "statusnet", but if you have more than one installation on the
908     server, you may want to change the name for each instance so
909     you can track log messages more easily.
910 priority: level to log at. Currently ignored.
911 facility: what syslog facility to used. Defaults to LOG_USER, only
912     reset if you know what syslog is and have a good reason
913     to change it.
914
915 queue
916 -----
917
918 You can configure the software to queue time-consuming tasks, like
919 sending out SMS email or XMPP messages, for off-line processing. See
920 'Queues and daemons' above for how to set this up.
921
922 enabled: Whether to uses queues. Defaults to false.
923 subsystem: Which kind of queueserver to use. Values include "db" for
924     our hacked-together database queuing (no other server
925     required) and "stomp" for a stomp server.
926 stomp_server: "broker URI" for stomp server. Something like
927     "tcp://hostname:61613". More complicated ones are
928     possible; see your stomp server's documentation for
929     details.
930 queue_basename: a root name to use for queues (stomp only). Typically
931     something like '/queue/sitename/' makes sense. If running
932     multiple instances on the same server, make sure that
933     either this setting or $config['site']['nickname'] are
934     unique for each site to keep them separate.
935
936 stomp_username: username for connecting to the stomp server; defaults
937     to null.
938 stomp_password: password for connecting to the stomp server; defaults
939     to null.
940
941 stomp_persistent: keep items across queue server restart, if enabled.
942     Under ActiveMQ, the server configuration determines if and how
943     persistent storage is actually saved.
944
945     If using a message queue server other than ActiveMQ, you may
946     need to disable this if it does not support persistence.
947
948 stomp_transactions: use transactions to aid in error detection.
949     A broken transaction will be seen quickly, allowing a message
950     to be redelivered immediately if a daemon crashes.
951
952     If using a message queue server other than ActiveMQ, you may
953     need to disable this if it does not support transactions.
954
955 stomp_acks: send acknowledgements to aid in flow control.
956     An acknowledgement of successful processing tells the server
957     we're ready for more and can help keep things moving smoothly.
958
959     This should *not* be turned off when running with ActiveMQ, but
960     if using another message queue server that does not support
961     acknowledgements you might need to disable this.
962
963 softlimit: an absolute or relative "soft memory limit"; daemons will
964     restart themselves gracefully when they find they've hit
965     this amount of memory usage. Defaults to 90% of PHP's global
966     memory_limit setting.
967
968 inboxes: delivery of messages to receiver's inboxes can be delayed to
969     queue time for best interactive performance on the sender.
970     This may however be annoyingly slow when using the DB queues,
971     so you can set this to false if it's causing trouble.
972
973 breakout: for stomp, individual queues are by default grouped up for
974     best scalability. If some need to be run by separate daemons,
975     etc they can be manually adjusted here.
976
977         Default will share all queues for all sites within each group.
978         Specify as <group>/<queue> or <group>/<queue>/<site>,
979         using nickname identifier as site.
980
981         'main/distrib' separate "distrib" queue covering all sites
982         'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
983
984 max_retries: for stomp, drop messages after N failed attempts to process.
985     Defaults to 10.
986
987 dead_letter_dir: for stomp, optional directory to dump data on failed
988     queue processing events after discarding them.
989
990 stomp_no_transactions: for stomp, the server does not support transactions,
991     so do not try to user them. This is needed for http://www.morbidq.com/.
992
993 stomp_no_acks: for stomp, the server does not support acknowledgements.
994     so do not try to user them. This is needed for http://www.morbidq.com/.
995
996 license
997 -------
998
999 The default license to use for your users notices. The default is the
1000 Creative Commons Attribution 3.0 license, which is probably the right
1001 choice for any public site. Note that some other servers will not
1002 accept notices if you apply a stricter license than this.
1003
1004 type: one of 'cc' (for Creative Commons licenses), 'allrightsreserved'
1005     (default copyright), or 'private' (for private and confidential
1006     information).
1007 owner: for 'allrightsreserved' or 'private', an assigned copyright
1008     holder (for example, an employer for a private site). If
1009     not specified, will be attributed to 'contributors'.
1010 url: URL of the license, used for links.
1011 title: Title for the license, like 'Creative Commons Attribution 3.0'.
1012 image: A button shown on each page for the license.
1013
1014 mail
1015 ----
1016
1017 This is for configuring out-going email. We use PEAR's Mail module,
1018 see: http://pear.php.net/manual/en/package.mail.mail.factory.php
1019
1020 backend: the backend to use for mail, one of 'mail', 'sendmail', and
1021     'smtp'. Defaults to PEAR's default, 'mail'.
1022 params: if the mail backend requires any parameters, you can provide
1023     them in an associative array.
1024
1025 nickname
1026 --------
1027
1028 This is for configuring nicknames in the service.
1029
1030 blacklist: an array of strings for usernames that may not be
1031     registered. A default array exists for strings that are
1032     used by StatusNet (e.g. 'doc', 'main', 'avatar', 'theme')
1033     but you may want to add others if you have other software
1034     installed in a subdirectory of StatusNet or if you just
1035     don't want certain words used as usernames.
1036 featured: an array of nicknames of 'featured' users of the site.
1037     Can be useful to draw attention to well-known users, or
1038     interesting people, or whatever.
1039
1040 avatar
1041 ------
1042
1043 For configuring avatar access.
1044
1045 dir: Directory to look for avatar files and to put them into.
1046     Defaults to avatar subdirectory of install directory; if
1047     you change it, make sure to change path, too.
1048 path: Path to avatars. Defaults to path for avatar subdirectory,
1049     but you can change it if you wish. Note that this will
1050     be included with the avatar server, too.
1051 server: If set, defines another server where avatars are stored in the
1052     root directory. Note that the 'avatar' subdir still has to be
1053     writeable. You'd typically use this to split HTTP requests on
1054     the client to speed up page loading, either with another
1055     virtual server or with an NFS or SAMBA share. Clients
1056     typically only make 2 connections to a single server at a
1057     time <http://ur1.ca/6ih>, so this can parallelize the job.
1058     Defaults to null.
1059 ssl: Whether to access avatars using HTTPS. Defaults to null, meaning
1060     to guess based on site-wide SSL settings.
1061
1062 public
1063 ------
1064
1065 For configuring the public stream.
1066
1067 localonly: If set to true, only messages posted by users of this
1068     service (rather than other services, filtered through OMB)
1069     are shown in the public stream. Default true.
1070 blacklist: An array of IDs of users to hide from the public stream.
1071     Useful if you have someone making excessive Twitterfeed posts
1072     to the site, other kinds of automated posts, testing bots, etc.
1073 autosource: Sources of notices that are from automatic posters, and thus
1074     should be kept off the public timeline. Default empty.
1075
1076 theme
1077 -----
1078
1079 server: Like avatars, you can speed up page loading by pointing the
1080     theme file lookup to another server (virtual or real).
1081     Defaults to NULL, meaning to use the site server.
1082 dir: Directory where theme files are stored. Used to determine
1083     whether to show parts of a theme file. Defaults to the theme
1084     subdirectory of the install directory.
1085 path: Path part of theme URLs, before the theme name. Relative to the
1086     theme server. It may make sense to change this path when upgrading,
1087     (using version numbers as the path) to make sure that all files are
1088     reloaded by caching clients or proxies. Defaults to null,
1089     which means to use the site path + '/theme'.
1090 ssl: Whether to use SSL for theme elements. Default is null, which means
1091     guess based on site SSL settings.
1092
1093 javascript
1094 ----------
1095
1096 server: You can speed up page loading by pointing the
1097     theme file lookup to another server (virtual or real).
1098     Defaults to NULL, meaning to use the site server.
1099 path: Path part of Javascript URLs. Defaults to null,
1100     which means to use the site path + '/js/'.
1101 ssl: Whether to use SSL for JavaScript files. Default is null, which means
1102     guess based on site SSL settings.
1103
1104 xmpp
1105 ----
1106
1107 For configuring the XMPP sub-system.
1108
1109 enabled: Whether to accept and send messages by XMPP. Default false.
1110 server: server part of XMPP ID for update user.
1111 port: connection port for clients. Default 5222, which you probably
1112     shouldn't need to change.
1113 user: username for the client connection. Users will receive messages
1114     from 'user'@'server'.
1115 resource: a unique identifier for the connection to the server. This
1116     is actually used as a prefix for each XMPP component in the system.
1117 password: password for the user account.
1118 host: some XMPP domains are served by machines with a different
1119     hostname. (For example, @gmail.com GTalk users connect to
1120     talk.google.com). Set this to the correct hostname if that's the
1121     case with your server.
1122 encryption: Whether to encrypt the connection between StatusNet and the
1123     XMPP server. Defaults to true, but you can get
1124     considerably better performance turning it off if you're
1125     connecting to a server on the same machine or on a
1126     protected network.
1127 debug: if turned on, this will make the XMPP library blurt out all of
1128     the incoming and outgoing messages as XML stanzas. Use as a
1129     last resort, and never turn it on if you don't have queues
1130     enabled, since it will spit out sensitive data to the browser.
1131 public: an array of JIDs to send _all_ notices to. This is useful for
1132     participating in third-party search and archiving services.
1133
1134 invite
1135 ------
1136
1137 For configuring invites.
1138
1139 enabled: Whether to allow users to send invites. Default true.
1140
1141 tag
1142 ---
1143
1144 Miscellaneous tagging stuff.
1145
1146 dropoff: Decay factor for tag listing, in seconds.
1147     Defaults to exponential decay over ten days; you can twiddle
1148     with it to try and get better results for your site.
1149
1150 popular
1151 -------
1152
1153 Settings for the "popular" section of the site.
1154
1155 dropoff: Decay factor for popularity listing, in seconds.
1156     Defaults to exponential decay over ten days; you can twiddle
1157     with it to try and get better results for your site.
1158
1159 daemon
1160 ------
1161
1162 For daemon processes.
1163
1164 piddir: directory that daemon processes should write their PID file
1165     (process ID) to. Defaults to /var/run/, which is where this
1166     stuff should usually go on Unix-ish systems.
1167 user: If set, the daemons will try to change their effective user ID
1168     to this user before running. Probably a good idea, especially if
1169     you start the daemons as root. Note: user name, like 'daemon',
1170     not 1001.
1171 group: If set, the daemons will try to change their effective group ID
1172     to this named group. Again, a name, not a numerical ID.
1173
1174 memcached
1175 ---------
1176
1177 You can get a significant boost in performance by caching some
1178 database data in memcached <http://www.danga.com/memcached/>.
1179
1180 enabled: Set to true to enable. Default false.
1181 server: a string with the hostname of the memcached server. Can also
1182     be an array of hostnames, if you've got more than one server.
1183 base: memcached uses key-value pairs to store data. We build long,
1184     funny-looking keys to make sure we don't have any conflicts. The
1185     base of the key is usually a simplified version of the site name
1186     (like "Identi.ca" => "identica"), but you can overwrite this if
1187     you need to. You can safely ignore it if you only have one
1188     StatusNet site using your memcached server.
1189 port: Port to connect to; defaults to 11211.
1190
1191 emailpost
1192 ---------
1193
1194 For post-by-email.
1195
1196 enabled: Whether to enable post-by-email. Defaults to true. You will
1197     also need to set up maildaemon.php.
1198
1199 sms
1200 ---
1201
1202 For SMS integration.
1203
1204 enabled: Whether to enable SMS integration. Defaults to true. Queues
1205     should also be enabled.
1206
1207 integration
1208 -----------
1209
1210 A catch-all for integration with other systems.
1211
1212 taguri: base for tag:// URIs. Defaults to site-server + ',2009'.
1213
1214 inboxes
1215 -------
1216
1217 For notice inboxes.
1218
1219 enabled: No longer used. If you set this to something other than true,
1220     StatusNet will no longer run.
1221
1222 throttle
1223 --------
1224
1225 For notice-posting throttles.
1226
1227 enabled: Whether to throttle posting. Defaults to false.
1228 count: Each user can make this many posts in 'timespan' seconds. So, if count
1229     is 100 and timespan is 3600, then there can be only 100 posts
1230     from a user every hour.
1231 timespan: see 'count'.
1232
1233 profile
1234 -------
1235
1236 Profile management.
1237
1238 biolimit: max character length of bio; 0 means no limit; null means to use
1239     the site text limit default.
1240
1241 newuser
1242 -------
1243
1244 Options with new users.
1245
1246 default: nickname of a user account to automatically subscribe new
1247     users to. Typically this would be system account for e.g.
1248     service updates or announcements. Users are able to unsub
1249     if they want. Default is null; no auto subscribe.
1250 welcome: nickname of a user account that sends welcome messages to new
1251     users. Can be the same as 'default' account, although on
1252     busy servers it may be a good idea to keep that one just for
1253     'urgent' messages. Default is null; no message.
1254
1255 If either of these special user accounts are specified, the users should
1256 be created before the configuration is updated.
1257
1258 snapshot
1259 --------
1260
1261 The software will, by default, send statistical snapshots about the
1262 local installation to a stats server on the status.net Web site. This
1263 data is used by the developers to prioritize development decisions. No
1264 identifying data about users or organizations is collected. The data
1265 is available to the public for review. Participating in this survey
1266 helps StatusNet developers take your needs into account when updating
1267 the software.
1268
1269 run: string indicating when to run the statistics. Values can be 'web'
1270     (run occasionally at Web time), 'cron' (run from a cron script),
1271     or 'never' (don't ever run). If you set it to 'cron', remember to
1272     schedule the script to run on a regular basis.
1273 frequency: if run value is 'web', how often to report statistics.
1274     Measured in Web hits; depends on how active your site is.
1275     Default is 10000 -- that is, one report every 10000 Web hits,
1276     on average.
1277 reporturl: URL to post statistics to. Defaults to StatusNet developers'
1278     report system, but if they go evil or disappear you may
1279     need to update this to another value. Note: if you
1280     don't want to report stats, it's much better to
1281     set 'run' to 'never' than to set this value to something
1282     nonsensical.
1283
1284 attachments
1285 -----------
1286
1287 The software lets users upload files with their notices. You can configure
1288 the types of accepted files by mime types and a trio of quota options:
1289 per file, per user (total), per user per month.
1290
1291 We suggest the use of the pecl file_info extension to handle mime type
1292 detection.
1293
1294 supported: an array of mime types you accept to store and distribute,
1295     like 'image/gif', 'video/mpeg', 'audio/mpeg', etc. Make sure you
1296     setup your server to properly recognize the types you want to
1297     support.
1298 uploads: false to disable uploading files with notices (true by default).
1299 filecommand: The required MIME_Type library may need to use the 'file'
1300     command. It tries the one in the Web server's path, but if
1301     you're having problems with uploads, try setting this to the
1302     correct value. Note: 'file' must accept '-b' and '-i' options.
1303
1304 For quotas, be sure you've set the upload_max_filesize and post_max_size
1305 in php.ini to be large enough to handle your upload. In httpd.conf
1306 (if you're using apache), check that the LimitRequestBody directive isn't
1307 set too low (it's optional, so it may not be there at all).
1308
1309 file_quota: maximum size for a single file upload in bytes. A user can send
1310     any amount of notices with attachments as long as each attachment
1311     is smaller than file_quota.
1312 user_quota: total size in bytes a user can store on this server. Each user
1313     can store any number of files as long as their total size does
1314     not exceed the user_quota.
1315 monthly_quota: total size permitted in the current month. This is the total
1316     size in bytes that a user can upload each month.
1317 dir: directory accessible to the Web process where uploads should go.
1318     Defaults to the 'file' subdirectory of the install directory, which
1319     should be writeable by the Web user.
1320 server: server name to use when creating URLs for uploaded files.
1321     Defaults to null, meaning to use the default Web server. Using
1322     a virtual server here can speed up Web performance.
1323 path: URL path, relative to the server, to find files. Defaults to
1324     main path + '/file/'.
1325 ssl: whether to use HTTPS for file URLs. Defaults to null, meaning to
1326     guess based on other SSL settings.
1327 filecommand: command to use for determining the type of a file. May be
1328     skipped if fileinfo extension is installed. Defaults to
1329     '/usr/bin/file'.
1330
1331 group
1332 -----
1333
1334 Options for group functionality.
1335
1336 maxaliases: maximum number of aliases a group can have. Default 3. Set
1337     to 0 or less to prevent aliases in a group.
1338 desclimit: maximum number of characters to allow in group descriptions.
1339     null (default) means to use the site-wide text limits. 0
1340     means no limit.
1341
1342 oohembed
1343 --------
1344
1345 oEmbed endpoint for multimedia attachments (links in posts).
1346
1347 endpoint: oohembed endpoint using http://oohembed.com/ software.
1348
1349 search
1350 ------
1351
1352 Some stuff for search.
1353
1354 type: type of search. Ignored if PostgreSQL or Sphinx are enabled. Can either
1355     be 'fulltext' (default) or 'like'. The former is faster and more efficient
1356     but requires the lame old MyISAM engine for MySQL. The latter
1357     will work with InnoDB but could be miserably slow on large
1358     systems. We'll probably add another type sometime in the future,
1359     with our own indexing system (maybe like MediaWiki's).
1360
1361 sessions
1362 --------
1363
1364 Session handling.
1365
1366 handle: boolean. Whether we should register our own PHP session-handling
1367     code (using the database and memcache if enabled). Defaults to false.
1368     Setting this to true makes some sense on large or multi-server
1369     sites, but it probably won't hurt for smaller ones, either.
1370 debug: whether to output debugging info for session storage. Can help
1371     with weird session bugs, sometimes. Default false.
1372
1373 background
1374 ----------
1375
1376 Users can upload backgrounds for their pages; this section defines
1377 their use.
1378
1379 server: the server to use for background. Using a separate (even
1380     virtual) server for this can speed up load times. Default is
1381     null; same as site server.
1382 dir: directory to write backgrounds too. Default is '/background/'
1383     subdir of install dir.
1384 path: path to backgrounds. Default is sub-path of install path; note
1385     that you may need to change this if you change site-path too.
1386 ssl: Whether or not to use HTTPS for background files. Defaults to
1387     null, meaning to guess from site-wide SSL settings.
1388
1389 ping
1390 ----
1391
1392 Using the "XML-RPC Ping" method initiated by weblogs.com, the site can
1393 notify third-party servers of updates.
1394
1395 notify: an array of URLs for ping endpoints. Default is the empty
1396     array (no notification).
1397
1398 design
1399 ------
1400
1401 Default design (colors and background) for the site. Actual appearance
1402 depends on the theme.  Null values mean to use the theme defaults.
1403
1404 backgroundcolor: Hex color of the site background.
1405 contentcolor: Hex color of the content area background.
1406 sidebarcolor: Hex color of the sidebar background.
1407 textcolor: Hex color of all non-link text.
1408 linkcolor: Hex color of all links.
1409 backgroundimage: Image to use for the background.
1410 disposition: Flags for whether or not to tile the background image.
1411
1412 notice
1413 ------
1414
1415 Configuration options specific to notices.
1416
1417 contentlimit: max length of the plain-text content of a notice.
1418     Default is null, meaning to use the site-wide text limit.
1419     0 means no limit.
1420
1421 message
1422 -------
1423
1424 Configuration options specific to messages.
1425
1426 contentlimit: max length of the plain-text content of a message.
1427     Default is null, meaning to use the site-wide text limit.
1428     0 means no limit.
1429
1430 logincommand
1431 ------------
1432
1433 Configuration options for the login command.
1434
1435 disabled: whether to enable this command. If enabled, users who send
1436     the text 'login' to the site through any channel will
1437     receive a link to login to the site automatically in return.
1438     Possibly useful for users who primarily use an XMPP or SMS
1439     interface and can't be bothered to remember their site
1440     password. Note that the security implications of this are
1441     pretty serious and have not been thoroughly tested. You
1442     should enable it only after you've convinced yourself that
1443     it is safe. Default is 'false'.
1444
1445 singleuser
1446 ----------
1447
1448 If an installation has only one user, this can simplify a lot of the
1449 interface. It also makes the user's profile the root URL.
1450
1451 enabled: Whether to run in "single user mode". Default false.
1452 nickname: nickname of the single user.
1453
1454 robotstxt
1455 ---------
1456
1457 We put out a default robots.txt file to guide the processing of
1458 Web crawlers. See http://www.robotstxt.org/ for more information
1459 on the format of this file.
1460
1461 crawldelay: if non-empty, this value is provided as the Crawl-Delay:
1462     for the robots.txt file. see http://ur1.ca/l5a0
1463     for more information. Default is zero, no explicit delay.
1464 disallow: Array of (virtual) directories to disallow. Default is 'main',
1465     'search', 'message', 'settings', 'admin'. Ignored when site
1466     is private, in which case the entire site ('/') is disallowed.
1467
1468 Plugins
1469 =======
1470
1471 Beginning with the 0.7.x branch, StatusNet has supported a simple but
1472 powerful plugin architecture. Important events in the code are named,
1473 like 'StartNoticeSave', and other software can register interest
1474 in those events. When the events happen, the other software is called
1475 and has a choice of accepting or rejecting the events.
1476
1477 In the simplest case, you can add a function to config.php and use the
1478 Event::addHandler() function to hook an event:
1479
1480     function AddGoogleLink($action)
1481     {
1482         $action->menuItem('http://www.google.com/', _('Google'), _('Search engine'));
1483         return true;
1484     }
1485
1486     Event::addHandler('EndPrimaryNav', 'AddGoogleLink');
1487
1488 This adds a menu item to the end of the main navigation menu. You can
1489 see the list of existing events, and parameters that handlers must
1490 implement, in EVENTS.txt.
1491
1492 The Plugin class in lib/plugin.php makes it easier to write more
1493 complex plugins. Sub-classes can just create methods named
1494 'onEventName', where 'EventName' is the name of the event (case
1495 matters!). These methods will be automatically registered as event
1496 handlers by the Plugin constructor (which you must call from your own
1497 class's constructor).
1498
1499 Several example plugins are included in the plugins/ directory. You
1500 can enable a plugin with the following line in config.php:
1501
1502     addPlugin('Example', array('param1' => 'value1',
1503                                'param2' => 'value2'));
1504
1505 This will look for and load files named 'ExamplePlugin.php' or
1506 'Example/ExamplePlugin.php' either in the plugins/ directory (for
1507 plugins that ship with StatusNet) or in the local/ directory (for
1508 plugins you write yourself or that you get from somewhere else) or
1509 local/plugins/.
1510
1511 Plugins are documented in their own directories.
1512
1513 Troubleshooting
1514 ===============
1515
1516 The primary output for StatusNet is syslog, unless you configured a
1517 separate logfile. This is probably the first place to look if you're
1518 getting weird behaviour from StatusNet.
1519
1520 If you're tracking the unstable version of StatusNet in the git
1521 repository (see below), and you get a compilation error ("unexpected
1522 T_STRING") in the browser, check to see that you don't have any
1523 conflicts in your code.
1524
1525 If you upgraded to StatusNet 0.9.2 without reading the "Notice
1526 inboxes" section above, and all your users' 'Personal' tabs are empty,
1527 read the "Notice inboxes" section above.
1528
1529 Myths
1530 =====
1531
1532 These are some myths you may see on the Web about StatusNet.
1533 Documentation from the core team about StatusNet has been pretty
1534 sparse, so some backtracking and guesswork resulted in some incorrect
1535 assumptions.
1536
1537 - "Set $config['db']['debug'] = 5 to debug the database." This is an
1538   extremely bad idea. It's a tool built into DB_DataObject that will
1539   emit oodles of print lines directly to the browser of your users.
1540   Among these lines will be your database username and password. Do
1541   not enable this option on a production Web site for any reason.
1542
1543 - "Edit dataobject.ini with the following settings..." dataobject.ini
1544   is a development file for the DB_DataObject framework and is not
1545   used by the running software. It was removed from the StatusNet
1546   distribution because its presence was confusing. Do not bother
1547   configuring dataobject.ini, and do not put your database username
1548   and password into the file on a production Web server; unscrupulous
1549   persons may try to read it to get your passwords.
1550
1551 Unstable version
1552 ================
1553
1554 If you're adventurous or impatient, you may want to install the
1555 development version of StatusNet. To get it, use the git version
1556 control tool <http://git-scm.com/> like so:
1557
1558     git clone git@gitorious.org:statusnet/mainline.git
1559
1560 This is the version of the software that runs on Identi.ca and the
1561 status.net hosted service. Using it is a mixed bag. On the positive
1562 side, it usually includes the latest security and bug fix patches. On
1563 the downside, it may also include changes that require admin
1564 intervention (like running a script or even raw SQL!) that may not be
1565 documented yet. It may be a good idea to test this version before
1566 installing it on your production machines.
1567
1568 To keep it up-to-date, use 'git pull'. Watch for conflicts!
1569
1570 Further information
1571 ===================
1572
1573 There are several ways to get more information about StatusNet.
1574
1575 * There is a mailing list for StatusNet developers and admins at
1576   http://mail.status.net/mailman/listinfo/statusnet-dev
1577 * The #statusnet IRC channel on freenode.net <http://www.freenode.net/>.
1578 * The StatusNet wiki, http://status.net/wiki/
1579 * The StatusNet blog, http://status.net/blog/
1580 * The StatusNet status update, <http://status.status.net/> (!)
1581
1582 Feedback
1583 ========
1584
1585 * Microblogging messages to http://support.status.net/ are very welcome.
1586 * The microblogging group http://identi.ca/group/statusnet is a good
1587   place to discuss the software.
1588 * StatusNet has a bug tracker for any defects you may find, or ideas for
1589   making things better. http://status.net/bugs
1590
1591 Credits
1592 =======
1593
1594 The following is an incomplete list of developers who've worked on
1595 StatusNet. Apologies for any oversight; please let evan@status.net know
1596 if anyone's been overlooked in error.
1597
1598 * Evan Prodromou, founder and lead developer, StatusNet, Inc.
1599 * Zach Copley, StatusNet, Inc.
1600 * Earle Martin, StatusNet, Inc.
1601 * Marie-Claude Doyon, designer, StatusNet, Inc.
1602 * Sarven Capadisli, StatusNet, Inc.
1603 * Robin Millette, StatusNet, Inc.
1604 * Ciaran Gultnieks
1605 * Michael Landers
1606 * Ori Avtalion
1607 * Garret Buell
1608 * Mike Cochrane
1609 * Matthew Gregg
1610 * Florian Biree
1611 * Erik Stambaugh
1612 * 'drry'
1613 * Gina Haeussge
1614 * Tryggvi Björgvinsson
1615 * Adrian Lang
1616 * Ori Avtalion
1617 * Meitar Moscovitz
1618 * Ken Sheppardson (Trac server, man-about-town)
1619 * Tiago 'gouki' Faria (i18n manager)
1620 * Sean Murphy
1621 * Leslie Michael Orchard
1622 * Eric Helgeson
1623 * Ken Sedgwick
1624 * Brian Hendrickson
1625 * Tobias Diekershoff
1626 * Dan Moore
1627 * Fil
1628 * Jeff Mitchell
1629 * Brenda Wallace
1630 * Jeffery To
1631 * Federico Marani
1632 * Craig Andrews
1633 * mEDI
1634 * Brett Taylor
1635 * Brigitte Schuster
1636
1637 Thanks also to the developers of our upstream library code and to the
1638 thousands of people who have tried out Identi.ca, installed StatusNet,
1639 told their friends, and built the Open Microblogging network to what
1640 it is today.