]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - README
Script to update laconica.pot from source, and the results of running it
[quix0rs-gnu-social.git] / README
1 ------
2 README
3 ------
4
5 Laconica 0.6.1
6 6 October 2008
7
8 This is the README file for Laconica, 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 Laconica can be found in the
12 "doc" subdirectory or in the "help" section on-line.
13
14 About
15 =====
16
17 Laconica (pronounced "luh-KAWN-ih-kuh") is a Free and Open Source
18 microblogging platform. It helps people in a community, company or
19 group to exchange short (140 character) messages over the Web. Users
20 can choose which people to "follow" and receive only their friends' or
21 colleagues' status messages. It provides a similar service to sites
22 like Twitter, Jaiku, Pownce and Plurk.
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 Laconica supports an open standard called OpenMicroBlogging
29 (http://openmicroblogging.org/) that lets users on different Web sites
30 or in different companies subscribe to each others' notices. It
31 enables a distributed social network spread all across the Web.
32
33 Laconica 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.0:
37
38       http://www.openknowledge.org/ossd
39
40 License
41 =======
42
43 This program is free software: you can redistribute it and/or modify
44 it under the terms of the GNU Affero General Public License as
45 published by the Free Software Foundation, either version 3 of the
46 License, or (at your option) any later version.
47
48 This program is distributed in the hope that it will be useful, but
49 WITHOUT ANY WARRANTY; without even the implied warranty of
50 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
51 Affero General Public License for more details.
52
53 You should have received a copy of the GNU Affero General Public
54 License along with this program, in the file "COPYING".  If not, see
55 <http://www.gnu.org/licenses/>.
56
57     IMPORTANT NOTE: The GNU Affero General Public License (AGPL) has
58     *different requirements* from the "regular" GPL. In particular, if
59     you make modifications to the Laconica source code on your server,
60     you *MUST MAKE AVAILABLE* the modified version of the source code
61     to your users under the same license. This is a legal requirement
62     of using the software, and if you do not wish to share your
63     modifications, *YOU MAY NOT INSTALL LACONICA*.
64
65 Additional library software has been made available in the 'extlib'
66 directory. All of it is Free Software and can be distributed under
67 liberal terms, but those terms may differ in detail from the AGPL's
68 particulars. See each package's license file in the extlib directory
69 for additional terms.
70
71 New this version
72 ================
73
74 This is a minor feature improvement version from version 0.6.0
75 (release 22 Sep 2008). Notable features of version 0.6.1 include:
76
77 - Direct messages (DMs) and Favorites (faves) are now available
78   through the Twitter-like API.
79 - All of the Twitter commands (see http://ur1.ca/7ru) are available
80   through SMS, IM, Web and API, although some are not functional (for
81   features Laconica does not yet support)
82 - 20 additional languages supported at various levels (some pretty
83   basic).
84 - Significant additional caching using memcached for most database
85   queries. Using memcached can significantly speed up a Laconica
86   instance with this version.
87 - All required external libraries are now available in extlib/ 
88   subdirectory.
89 - Many bug fixes.
90 - Continued but poorly-documented experimental support for Postgresql.
91
92 NOTE: the database definition file, stoica.ini, has been renamed to
93 laconica.ini (since this is the recommended database name). If you
94 have a line in your config.php pointing to the old name, you'll need
95 to update it.
96
97 Prerequisites
98 =============
99
100 The following software packages are *required* for this software to
101 run correctly.
102
103 - PHP 5.2.x. It may be possible to run this software on earlier
104   versions of PHP, but many of the functions used are only available
105   in PHP 5.2 or above.
106 - MySQL 5.x. The Laconica database is stored, by default, in a MySQL
107   server. It has been primarily tested on 5.x servers, although it may
108   be possible to install on earlier (or later!) versions. The server
109   *must* support the MyISAM storage engine -- the default for most
110   MySQL servers -- *and* the InnoDB storage engine.
111 - A Web server. Preferably, you should have Apache 2.2.x with the
112   mod_rewrite extension installed and enabled. 
113
114 Your PHP installation must include the following PHP extensions:
115
116 - Curl. This is for fetching files by HTTP.
117 - XMLWriter. This is for formatting XML and HTML output.
118 - MySQL. For accessing the database.
119 - GD. For scaling down avatar images.
120 - mbstring. For handling Unicode (UTF-8) encoded strings.
121
122 For some functionality, you will also need the following extensions:
123
124 - Memcache. A client for the memcached server, which caches database
125   information in volatile memory. This is important for adequate
126   performance on high-traffic sites. You will also need a memcached
127   server to store the data in.
128 - Mailparse. Efficient parsing of email requires this extension.
129   Submission by email or SMS-over-email uses this extension.
130   
131 You will almost definitely get 2-3 times better performance from your
132 site if you install a PHP bytecode cache/accelerator. Some well-known
133 examples are: eaccelerator, Turck mmcache, xcache, apc. Zend Optimizer
134 is a proprietary accelerator installed on some hosting sites.
135
136 External libraries
137 ------------------
138
139 A number of external PHP libraries are used to provide basic
140 functionality and optional functionality for your system. For your
141 convenience, they are available in the "extlib" directory of this
142 package, and you do not have to download and install them. However,
143 you may want to keep them up-to-date with the latest upstream version,
144 and the URLs are listed here for your convenience.
145
146 - DB_DataObject http://pear.php.net/package/DB_DataObject
147 - Validate http://pear.php.net/package/Validate
148 - OpenID from OpenIDEnabled (not the PEAR version!). We decided
149   to use the openidenabled.com version since it's more widely
150   implemented, and seems to be better supported.
151   http://openidenabled.com/php-openid/
152 - PEAR DB. Although this is an older data access system (new
153   packages should probably use PHP DBO), the OpenID libraries
154   depend on PEAR DB so we use it here, too. DB_DataObject can
155   also use PEAR MDB2, which may give you better performance
156   but won't work with OpenID.
157   http://pear.php.net/package/DB
158 - OAuth.php from http://oauth.googlecode.com/svn/code/php/
159 - markdown.php from http://michelf.com/projects/php-markdown/ 
160 - PEAR Mail, for sending out mail notifications
161   http://pear.php.net/package/Mail
162 - PEAR Net_SMTP, if you use the SMTP factory for notifications
163   http://pear.php.net/package/Net_SMTP
164 - XMPPHP, the follow-up to Class.Jabber.php. Probably the best XMPP
165   library available for PHP. http://xmpphp.googlecode.com/. Note that
166   as of this writing the version of this library that is available in
167   the extlib directory is *significantly different* from the upstream
168   version (patches have been submitted). Upgrading to the upstream
169   version may render your Laconica site unable to send or receive XMPP
170   messages.
171
172 A design goal of Laconica is that the basic Web functionality should
173 work on even the most restrictive commercial hosting services.
174 However, additional functionality, such as receiving messages by
175 Jabber/GTalk, require that you be able to run long-running processes
176 on your account. In addition, posting by email or from SMS require
177 that you be able to install a mail filter in your mail server.
178
179 Installation
180 ============
181
182 Installing the basic Laconica Web component is relatively easy,
183 especially if you've previously installed PHP/MySQL packages.
184
185 1. Unpack the tarball you downloaded on your Web server. Usually a
186    command like this will work:
187    
188            tar zxf laconica-0.6.0.tar.gz
189    
190    ...which will make a laconica-0.6.0 subdirectory in your current
191    directory. (If you don't have shell access on your Web server, you
192    may have to unpack the tarball on your local computer and FTP the
193    files to the server.)
194    
195 2. Move the tarball to a directory of your choosing in your Web root
196    directory. Usually something like this will work:
197    
198            mv laconica-0.6.0 /var/www/mublog
199    
200    This will make your Laconica instance available in the mublog path of
201    your server, like "http://example.net/mublog". "microblog" or
202    "laconica" might also be good path names. If you know how to
203    configure virtual hosts on your web server, you can try setting up
204    "http://micro.example.net/" or the like.
205    
206 3. You should also take this moment to make your avatar subdirectory
207    writeable by the Web server. An insecure way to do this is:
208    
209           chmod a+w /var/www/mublog/avatar
210    
211    On some systems, this will probably work:
212    
213            chgrp www-data /var/www/mublog/avatar
214            chmod g+w /var/www/mublog/avatar
215
216    If your Web server runs as another user besides "www-data", try
217    that user's default group instead. As a last resort, you can create
218    a new group like "avatar" and add the Web server's user to the group.
219
220 4. Create a database to hold your microblog data. Something like this
221    should work:
222    
223           mysqladmin -u "username" --password="password" create laconica
224    
225    Note that Laconica must have its own database; you can't share the
226    database with another program. You can name it whatever you want,
227    though.
228    
229    (If you don't have shell access to your server, you may need to use
230    a tool like PHPAdmin to create a database. Check your hosting
231    service's documentation for how to create a new MySQL database.)
232
233 5. Run the laconica.sql SQL script in the db subdirectory to create
234    the database tables in the database. A typical system would work
235    like this:
236
237           mysql -u "username" --password="password" laconica < /var/www/mublog/db/laconica.sql
238
239    You may want to test by logging into the database and checking that
240    the tables were created. Here's an example:
241    
242           SHOW TABLES;
243           
244 6. Create a new database account that Laconica will use to access the
245    database. If you have shell access, this will probably work from the
246    MySQL shell:
247    
248           GRANT SELECT,INSERT,DELETE,UPDATE on laconica.*
249           TO 'lacuser'@'localhost'
250           IDENTIFIED BY 'lacpassword';
251           
252    You should change 'lacuser' and 'lacpassword' to your preferred new
253    username and password. You may want to test logging in as this new
254    user and testing that you can SELECT from some of the tables in the
255    DB (use SHOW TABLES to see which ones are there).
256    
257 7. Copy the config.php.sample in the Laconica directory to config.php.
258
259 8. Edit config.php to set the basic configuration for your system.
260    (See descriptions below for basic config options.) Note that there
261    are lots of options and if you try to do them all at once, you will
262    have a hard time making sure what's working and what's not. So,
263    stick with the basics at first. In particular, customizing the
264    'site' and 'db' settings will almost definitely be needed.
265
266 9. At this point, you should be able to navigate in a browser to your
267    microblog's main directory and see the "Public Timeline", which
268    will be empty. If not, magic has happened! You can now register a
269    new user, post some notices, edit your profile, etc. However, you
270    may want to wait to do that stuff if you think you can set up
271    "fancy URLs" (see below), since some URLs are stored in the database. 
272    
273 Fancy URLs
274 ----------
275
276 By default, Laconica will have big long sloppy URLs that are hard for
277 people to remember or use. For example, a user's home profile might be
278 found at:
279
280     http://example.org/mublog/index.php?action=showstream&nickname=fred
281
282 It's possible to configure the software so it looks like this instead:
283
284     http://example.org/mublog/fred
285
286 These "fancy URLs" are more readable and memorable for users. To use
287 fancy URLs, you must either have Apache 2.2.x with .htaccess enabled
288 and mod_redirect enabled, -OR- know how to configure "url redirection"
289 in your server.
290
291 1. Copy the htaccess.sample file to .htaccess in your Laconica
292    directory. Note: if you have control of your server's httpd.conf or
293    similar configuration files, it can greatly improve performance to
294    import the .htaccess file into your conf file instead. If you're
295    not sure how to do it, you may save yourself a lot of headache by
296    just leaving the .htaccess file.
297    
298 2. Change the "RewriteBase" in the new .htaccess file to be the URL path
299    to your Laconica installation on your server. Typically this will
300    be the path to your Laconica directory relative to your Web root.
301
302 3. Add or uncomment or change a line in your config.php file so it says:
303
304        $config['site']['fancy'] = true;
305        
306 You should now be able to navigate to a "fancy" URL on your server,
307 like:
308
309      http://example.net/mublog/main/register
310
311 If you changed your HTTP server configuration, you may need to restart
312 the server first.
313
314 If you have problems with the .htaccess file on versions of Apache
315 earlier than 2.2.x, try changing the regular expressions in the
316 htaccess.sample file that use "\w" to just use ".".
317
318 SMS
319 ---
320
321 Laconica supports a cheap-and-dirty system for sending update messages
322 to mobile phones and for receiving updates from the mobile. Instead of
323 sending through the SMS network itself, which is costly and requires
324 buy-in from the wireless carriers, it simply piggybacks on the email
325 gateways that many carriers provide to their customers. So, SMS
326 configuration is essentially email configuration.
327
328 Each user sends to a made-up email address, which they keep a secret.
329 Incoming email that is "From" the user's SMS email address, and "To"
330 the users' secret email address on the site's domain, will be
331 converted to a message and stored in the DB.
332
333 For this to work, there *must* be a domain or sub-domain for which all
334 (or most) incoming email can pass through the incoming mail filter.
335
336 1. Run the SQL script carrier.sql in your Laconica database. This will
337    usually work:
338
339            mysql -u "lacuser" --password="lacpassword" laconica < db/carrier.sql
340
341    This will populate your database with a list of wireless carriers
342    that support email SMS gateways.
343
344 2. Make sure the maildaemon.php file is executable:
345
346         chmod +x scripts/maildaemon.php         
347    
348    Note that "daemon" is kind of a misnomer here; the script is more
349    of a filter than a daemon.
350    
351 2. Edit /etc/aliases on your mail server and add the following line:
352
353       *: /path/to/laconica/scripts/maildaemon.php
354
355 3. Run whatever code you need to to update your aliases database. For
356    many mail servers (Postfix, Exim, Sendmail), this should work:
357    
358       newaliases
359       
360    You may need to restart your mail server for the new database to
361    take effect.
362
363 4. Set the following in your config.php file:
364
365    $config['mail']['domain'] = 'yourdomain.example.net';
366    
367 At this point, post-by-email and post-by-SMS-gateway should work. Note
368 that if your mail server is on a different computer from your email
369 server, you'll need to have a full installation of Laconica, a working
370 config.php, and access to the Laconica database from the mail server.
371
372 XMPP
373 ----
374
375 XMPP (eXtended Message and Presence Protocol, http://xmpp.org/) is the
376 instant-messenger protocol that drives Jabber and GTalk IM. You can
377 distribute messages via XMPP using the system below; however, you
378 need to run the XMPP incoming daemon to allow incoming messages as
379 well.
380
381 1. You may want to strongly consider setting up your own XMPP server.
382    Ejabberd, OpenFire, and JabberD are all Open Source servers.
383    Jabber, Inc. provides a high-performance commercial server.
384    
385 2. You must register a Jabber ID (JID) with your new server. It helps
386    to choose a name like "update@example.com" or "notice" or something
387    similar.  Alternately, your "update JID" can be registered on a
388    publicly-available XMPP service, like jabber.org or GTalk.
389    
390    Laconica will not register the JID with your chosen XMPP server;
391    you need to do this manually, with an XMPP client like Gajim,
392    Telepathy, or Pidgin.im.
393    
394 3. Configure your site's XMPP variables, as described below in the
395    configuration section.
396    
397 On a default installation, your site can broadcast messages using
398 XMPP. Users won't be able to post messages using XMPP unless you've
399 got the XMPP daemon running.  See 'Queues and daemons' below for how
400 to set that up. Also, once you have a sizable number of users, sending
401 a lot of SMS, OMB, and XMPP messages whenever someone posts a message
402 can really slow down your site; it may cause posting to timeout.
403
404 NOTE: stream_select(), a crucial function for network programming, is
405 broken on PHP 5.2.x less than 5.2.6 on amd64-based servers. We don't
406 work around this bug in Laconica; current recommendation is to move
407 off of amd64 to another server.
408
409 Public feed
410 -----------
411
412 You can send *all* messages from your microblogging site to a
413 third-party service using XMPP. This can be useful for providing
414 search, indexing, bridging, or other cool services.
415
416 To configure a downstream site to receive your public stream, add
417 their "JID" (Jabber ID) to your config.php as follows:
418
419       $config['xmpp']['public'][] = 'downstream@example.net';
420       
421 (Don't miss those square brackets at the end.) Note that your XMPP
422 broadcasting must be configured as mentioned above. Although you can
423 send out messages at "Web time", high-volume sites should strongly
424 consider setting up queues and daemons.
425
426 Queues and daemons
427 ------------------
428
429 Some activities that Laconica needs to do, like broadcast OMB, SMS,
430 and XMPP messages, can be 'queued' and done by off-line bots instead.
431 For this to work, you must be able to run long-running offline
432 processes, either on your main Web server or on another server you
433 control. (Your other server will still need all the above
434 prerequisites, with the exception of Apache.) Installing on a separate
435 server is probably a good idea for high-volume sites.
436
437 1. You'll need the "CLI" (command-line interface) version of PHP
438    installed on whatever server you use.
439
440 2. If you're using a separate server for queues, install Laconica
441    somewhere on the server. You don't need to worry about the
442    .htaccess file, but make sure that your config.php file is close
443    to, or identical to, your Web server's version.
444
445 3. In your config.php files (both the Web server and the queues
446    server!), set the following variable:
447
448    $config['queue']['enabled'] = true;
449
450    You may also want to look at the 'daemon' section of this file for
451    more daemon options. Note that if you set the 'user' and/or 'group'
452    options, you'll need to create that user and/or group by hand.
453    They're not created automatically.
454    
455 4. On the queues server, run the command scripts/startdaemons.sh. It
456    needs as a parameter the install path; if you run it from the
457    Laconica dir, "." should suffice.
458    
459 This will run six (for now) queue handlers:
460
461 * xmppdaemon.php - listens for new XMPP messages from users and stores
462   them as notices in the database.
463 * jabberqueuehandler.php - sends queued notices in the database to
464   registered users who should receive them.
465 * publicqueuehandler.php - sends queued notices in the database to
466   public feed listeners.
467 * ombqueuehandler.php - sends queued notices to OpenMicroBlogging
468   recipients on foreign servers.
469 * smsqueuehandler.php - sends queued notices to SMS-over-email addresses
470   of registered users.
471 * xmppconfirmhandler.php - sends confirmation messages to registered
472   users.
473
474 Note that these queue daemons are pretty raw, and need your care. In
475 particular, they leak memory, and you may want to restart them on a
476 regular (daily or so) basis with a cron job. Also, if they lose
477 the connection to the XMPP server for too long, they'll simply die. It
478 may be a good idea to use a daemon-monitoring service, like 'monit',
479 to check their status and keep them running.
480
481 All the daemons write their process IDs (pids) to /var/run/ by
482 default. This can be useful for starting, stopping, and monitoring the
483 daemons.
484
485 Sitemaps
486 --------
487
488 Sitemap files (http://sitemaps.org/) are a very nice way of telling
489 search engines and other interested bots what's available on your site
490 and what's changed recently. You can generate sitemap files for your
491 Laconica instance.
492
493 1. Choose your sitemap URL layout. Laconica creates a number of
494    sitemap XML files for different parts of your site. You may want to
495    put these in a sub-directory of your Laconica directory to avoid
496    clutter. The sitemap index file tells the search engines and other
497    bots where to find all the sitemap files; it *must* be in the main
498    installation directory or higher. Both types of file must be
499    available through HTTP.
500    
501 2. To generate your sitemaps, run the following command on your server:
502
503    php scripts/sitemap.php -f index-file-path -d sitemap-directory -u URL-prefix-for-sitemaps
504
505    Here, index-file-path is the full path to the sitemap index file,
506    like './sitemapindex.xml'. sitemap-directory is the directory where
507    you want the sitemaps stored, like './sitemaps/' (make sure the dir
508    exists). URL-prefix-for-sitemaps is the full URL for the sitemap dir,
509    typically something like 'http://example.net/mublog/sitemaps/'.
510    
511 You can use several methods for submitting your sitemap index to
512 search engines to get your site indexed. One is to add a line like the
513 following to your robots.txt file:
514
515    Sitemap: /mublog/sitemapindex.xml
516
517 This is a good idea for letting *all* Web spiders know about your
518 sitemap. You can also submit sitemap files to major search engines
519 using their respective "Webmaster centres"; see sitemaps.org for links
520 to these resources.
521
522 Themes
523 ------
524
525 There are two themes shipped with this version of Laconica: "stoica",
526 which is what the Identi.ca site uses, and "default", which is a good
527 basis for other sites.
528
529 As of right now, your ability to change the theme is site-wide; users
530 can't choose their own theme. Additionally, the only thing you can
531 change in the theme is CSS stylesheets and some image files; you can't
532 change the HTML output, like adding or removing menu items.
533
534 You can choose a theme using the $config['site']['theme'] element in
535 the config.php file. See below for details.
536
537 You can add your own theme by making a sub-directory of the 'theme'
538 subdirectory with the name of your theme. Each theme can have the
539 following files:
540
541 display.css: a CSS2 file for "default" styling for all browsers.
542 ie6.css: a CSS2 file for override styling for fixing up Internet
543          Explorer 6.
544 ie7.css: a CSS2 file for override styling for fixing up Internet
545          Explorer 7.
546 logo.png: a logo image for the site.
547 default-avatar-profile.png: a 96x96 pixel image to use as the avatar for
548                             users who don't upload their own.
549 default-avatar-stream.png: Ditto, but 48x48. For streams of notices.
550 default-avatar-mini.png: Ditto ditto, but 24x24. For subscriptions
551                          listing on profile pages.
552
553 You may want to start by copying the files from the default theme to
554 your own directory.
555
556 Translation
557 -----------
558
559 Translations in Laconica use the gettext system (http://www.gnu.org/software/gettext/).
560 Theoretically, you can add your own sub-directory to the locale/
561 subdirectory to add a new language to your system. You'll need to
562 compile the ".po" files into ".mo" files, however.
563
564 Contributions of translation information to Laconica are very easy:
565 you can use the Web interface at http://laconi.ca/entrans/ to add one
566 or a few or lots of new translations -- or even new languages. You can
567 also download more up-to-date .po files there, if you so desire.
568
569 Backups
570 -------
571
572 There is no builtin system for doing backups in Laconica. You can make
573 backups of a working Laconica system by backing up the database and
574 the Web directory. To backup the database use mysqldump (http://ur1.ca/7xo)
575 and to backup the Web directory, try tar.
576
577 Upgrading
578 =========
579
580 If you've been using Laconica 0.6, 0.5 or lower, or if you've been
581 tracking the "darcs" version of the software, you will probably want
582 to upgrade and keep your existing data. There is no automated upgrade
583 procedure in Laconica 0.6.1. Try these step-by-step instructions; read
584 to the end first before trying them.
585
586 0. Download Laconica and set up all the prerequisites as if you were
587    doing a new install.
588 1. Make backups of both your database and your Web directory. UNDER NO
589    CIRCUMSTANCES should you try to do an upgrade without a known-good
590    backup. You have been warned.
591 2. Shut down Web access to your site, either by turning off your Web
592    server or by redirecting all pages to a "sorry, under maintenance"
593    page.
594 3. Shut down XMPP access to your site, typically by shutting down the
595    xmppdaemon.php process and all other daemons that you're running.
596    If you've got "monit" or "cron" automatically restarting your
597    daemons, make sure to turn that off, too.
598 4. Shut down SMS and email access to your site. The easy way to do
599    this is to comment out the line piping incoming email to your
600    maildaemon.php file, and running something like "newaliases".
601 5. Once all writing processes to your site are turned off, make a
602    final backup of the Web directory and database.
603 6. Move your Laconica directory to a backup spot, like "mublog.bak".
604 7. Unpack your Laconica 0.6 tarball and move it to "mublog" or
605    wherever your code used to be.
606 8. Copy the config.php file and avatar directory from your old
607    directory to your new directory.
608 9. Copy htaccess.sample to .htaccess in the new directory. Change the
609    RewriteBase to use the correct path.
610 10. Rebuild the database. Go to your Laconica directory and run the
611    rebuilddb.sh script like this:
612    
613    ./scripts/rebuilddb.sh rootuser rootpassword database db/laconica.sql
614    
615    Here, rootuser and rootpassword are the username and password for a
616    user who can drop and create databases as well as tables; typically
617    that's _not_ the user Laconica runs as.
618 11. Use mysql client to log into your database and make sure that the
619     notice, user, profile, subscription etc. tables are non-empty.
620 12. Turn back on the Web server, and check that things still work.
621 13. Turn back on XMPP bots and email maildaemon. Note that the XMPP
622     bots have changed since version 0.5; see above for details.
623
624 If you're upgrading from very old versions, you may want to look at
625 the fixup_* scripts in the scripts directories. These will store some
626 precooked data in the DB.
627
628 NOTE: the database definition file, stoica.ini, has been renamed to
629 laconica.ini (since this is the recommended database name). If you
630 have a line in your config.php pointing to the old name, you'll need
631 to update it.
632
633 Configuration options
634 =====================
635
636 The sole configuration file for Laconica (excepting configurations for
637 dependency software) is config.php in your Laconica directory. If you
638 edit any other file in the directory, like lib/common.php (where most
639 of the defaults are defined), you will lose your configuration options
640 in any upgrade, and you will wish that you had been more careful.
641
642 Almost all configuration options are made through a two-dimensional
643 associative array, cleverly named $config. A typical configuration
644 line will be:
645
646      $config['section']['option'] = value;
647
648 For brevity, the following documentation describes each section and
649 option.
650
651 site
652 ----
653
654 This section is a catch-all for site-wide variables.
655
656 name: the name of your site, like 'YourCompany Microblog'.
657 server: the server part of your site's URLs, like 'example.net'.
658 path: The path part of your site's URLs, like 'mublog' or '/'
659       (installed in root).
660 fancy: whether or not your site uses fancy URLs (see Fancy URLs
661        section above). Default is false.
662 logfile: full path to a file for Laconica to save logging 
663          information to. You may want to use this if you don't have
664          access to syslog.
665 locale_path: full path to the directory for locale data. Unless you
666              store all your locale data in one place, you probably
667              don't need to use this.
668 language: default language for your site. Defaults to US English.
669 languages: A list of languages supported on your site. Typically you'd
670            only change this if you wanted to disable support for one
671            or another language:
672            "unset($config['site']['languages']['de'])" will disable
673            support for German.
674 theme: Theme for your site (see Theme section). Two themes are
675        provided by default: 'default' and 'stoica' (the one used by
676        Identi.ca). It's appreciated if you don't use the 'stoica' theme
677        except as the basis for your own.
678 email: contact email address for your site. By default, it's extracted
679        from your Web server environment; you may want to customize it.
680 broughtbyurl: name of an organization or individual who provides the
681            service. Each page will include a link to this name in the
682            footer. A good way to link to the blog, forum, wiki,
683            corporate portal, or whoever is making the service available.
684 broughtby: text used for the "brought by" link.
685 timezone: default timezone for message display. Users can set their
686           own time zone. Defaults to 'UTC', which is a pretty good default.
687 closed: If set to 'true', will disallow registration on your site.
688         This is a cheap way to restrict accounts to only one
689         individual or group; just register the accounts you want on
690         the service, *then* set this variable to 'true'.
691 inviteonly: If set to 'true', will only allow registration if the user
692             was invited by an existing user.
693
694 db
695 --
696
697 This section is a reference to the configuration options for
698 DB_DataObject (see http://ur1.ca/7xp). The ones that you may want to
699 set are listed below for clarity.
700
701 database: a DSN (Data Source Name) for your Laconica database. This is
702           in the format 'protocol://username:password@hostname/databasename',
703           where 'protocol' is 'mysql' (or possibly 'postgresql', if you
704           really know what you're doing), 'username' is the username,
705           'password' is the password, and etc.
706 ini_yourdbname: if your database is not named 'laconica', you'll need
707                 to set this to point to the location of the
708                 laconica.ini file. Note that the real name of your database
709                 should go in there, not literally 'yourdbname'.
710 db_driver: You can try changing this to 'MDB2' to use the other driver
711            type for DB_DataObject, but note that it breaks the OpenID
712            libraries, which only support PEAR::DB.
713 debug: On a database error, you may get a message saying to set this
714        value to 5 to see debug messages in the browser. This breaks
715        just about all pages, and will also expose the username and
716        password 
717 quote_identifiers: Set this to true if you're using postgresql.
718 type: either 'mysql' or 'postgresql' (used for some bits of
719       database-type-specific SQL in the code). Defaults to mysql.
720 mirror: you can set this to an array of DSNs, like the above
721         'database' value. If it's set, certain read-only actions will
722         use a random value out of this array for the database, rather
723         than the one in 'database' (actually, 'database' is overwritten).
724         You can offload a busy DB server by setting up MySQL replication
725         and adding the slaves to this array. Note that if you want some
726         requests to go to the 'database' (master) server, you'll need
727         to include it in this array, too.
728
729 syslog
730 ------
731
732 By default, Laconica sites log error messages to the syslog facility.
733 (You can override this using the 'logfile' parameter described above).
734
735 appname: The name that Laconica uses to log messages. By default it's
736          "laconica", but if you have more than one installation on the
737          server, you may want to change the name for each instance so
738          you can track log messages more easily.
739
740 queue
741 -----
742
743 You can configure the software to queue time-consuming tasks, like
744 sending out SMS email or XMPP messages, for off-line processing. See
745 'Queues and daemons' above for how to set this up.
746
747 enabled: Whether to uses queues. Defaults to false.
748
749 license
750 -------
751
752 The default license to use for your users notices. The default is the
753 Creative Commons Attribution 3.0 license, which is probably the right
754 choice for any public site. Note that some other servers will not
755 accept notices if you apply a stricter license than this.
756
757 url: URL of the license, used for links.
758 title: Title for the license, like 'Creative Commons Attribution 3.0'.
759 image: A button shown on each page for the license.
760
761 mail
762 ----
763
764 This is for configuring out-going email. We use PEAR's Mail module,
765 see: http://pear.php.net/manual/en/package.mail.mail.factory.php
766
767 backend: the backend to use for mail, one of 'mail', 'sendmail', and
768          'smtp'. Defaults to PEAR's default, 'mail'.
769 params: if the mail backend requires any parameters, you can provide
770         them in an associative array.
771                           
772 nickname
773 --------
774
775 This is for configuring nicknames in the service.
776
777 blacklist: an array of strings for usernames that may not be
778            registered. A default array exists for strings that are
779            used by Laconica (e.g. 'doc', 'main', 'avatar', 'theme')
780            but you may want to add others if you have other software
781            installed in a subdirectory of Laconica or if you just
782            don't want certain words used as usernames.
783
784 avatar
785 ------
786
787 For configuring avatar access.
788
789 server: If set, defines another server where avatars are stored in the
790         root directory. Note that the 'avatar' subdir still has to be
791         writeable. You'd typically use this to split HTTP requests on
792         the client to speed up page loading, either with another
793         virtual server or with an NFS or SAMBA share. Clients
794         typically only make 2 connections to a single server at a
795         time (http://ur1.ca/6ih), so this can parallelize the job.
796         Defaults to null.
797
798 public
799 ------
800
801 For configuring the public stream.
802
803 localonly: If set to true, only messages posted by users of this
804            service (rather than other services, filtered through OMB)
805            are shown in the public stream. Default true.
806
807 theme
808 -----
809
810 server: Like avatars, you can speed up page loading by pointing the
811         theme file lookup to another server (virtual or real). The
812         theme server's root path should map to the Laconica "theme"
813         subdirectory. Defaults to NULL.
814
815 xmpp
816 ----
817
818 For configuring the XMPP sub-system.
819
820 enabled: Whether to accept and send messages by XMPP. Default false.
821 server: server part of XMPP ID for update user.
822 port: connection port for clients. Default 5222, which you probably
823       shouldn't need to change.
824 user: username for the client connection. Users will receive messages
825       from 'user'@'server'.
826 resource: a unique identifier for the connection to the server. This
827           is actually used as a prefix for each XMPP component in the system.
828 password: password for the user account.
829 host: some XMPP domains are served by machines with a different
830       hostname. (For example, @gmail.com GTalk users connect to
831       talk.google.com). Set this to the correct hostname if that's the
832       case with your server.
833 encryption: Whether to encrypt the connection between Laconica and the
834             XMPP server. Defaults to true, but you can get
835             considerably better performance turning it off if you're
836             connecting to a server on the same machine or on a
837             protected network.
838 debug: if turned on, this will make the XMPP library blurt out all of
839        the incoming and outgoing messages as XML stanzas. Use as a
840        last resort, and never turn it on if you don't have queues
841        enabled, since it will spit out sensitive data to the browser.
842 public: an array of JIDs to send _all_ notices to. This is useful for
843         participating in third-party search and archiving services.
844
845 tag
846 ---
847
848 Miscellaneous tagging stuff.
849
850 dropoff: Decay factor for tag listing, in seconds.
851          Defaults to exponential decay over ten days; you can twiddle
852          with it to try and get better results for your site.
853          
854 daemon
855 ------
856
857 For daemon processes.
858
859 piddir: directory that daemon processes should write their PID file
860         (process ID) to. Defaults to /var/run/, which is where this
861         stuff should usually go on Unix-ish systems.
862 user: If set, the daemons will try to change their effective user ID
863       to this user before running. Probably a good idea, especially if
864       you start the daemons as root. Note: user name, like 'daemon',
865       not 1001.
866 group: If set, the daemons will try to change their effective group ID
867        to this named group. Again, a name, not a numerical ID.
868
869 memcached
870 ---------
871
872 You can get a significant boost in performance by caching some
873 database data in memcached (http://www.danga.com/memcached/).
874
875 enabled: Set to true to enable. Default false.
876 server: a string with the hostname of the memcached server. Can also
877         be an array of hostnames, if you've got more than one server.
878
879 integration
880 -----------
881
882 A catch-all for integration with other systems.
883
884 source: The name to use for the source of posts to Twitter. Defaults
885         to 'laconica', but if you request your own source name from
886         Twitter (http://twitter.com/help/request_source), you can use
887         that here instead. Status updates on Twitter will then have
888         links to your site.
889
890 Troubleshooting
891 ===============
892
893 The primary output for Laconica is syslog, unless you configured a
894 separate logfile. This is probably the first place to look if you're
895 getting weird behaviour from Laconica.
896
897 If you're tracking the unstable version of Laconica in the darcs
898 repository (see below), and you get a compilation error ("unexpected
899 T_STRING") in the browser, check to see that you don't have any
900 conflicts in your code.
901
902 Myths
903 =====
904
905 These are some myths you may see on the Web about Laconica.
906 Documentation from the core team about Laconica has been pretty
907 sparse, so some backtracking and guesswork resulted in some incorrect
908 assumptions.
909
910 - "Set $config['db']['debug'] = 5 to debug the database." This is an
911   extremely bad idea. It's a tool built into DB_DataObject that will
912   emit oodles of print lines directly to the browser of your users.
913   Among these lines will be your database username and password. Do
914   not enable this option on a production Web site for any reason.
915   
916 - "Edit dataobject.ini with the following settings..." dataobject.ini
917   is a development file for the DB_DataObject framework and is not
918   used by the running software. It was removed from the Laconica
919   distribution because its presence was confusing. Do not bother
920   configuring dataobject.ini, and do not put your database username
921   and password into the file on a production Web server; unscrupulous
922   persons may try to read it to get your passwords.
923
924 Unstable version
925 ================
926
927 If you're adventurous or impatient, you may want to install the
928 development version of Laconica. To get it, use the darcs version
929 control tool (http://darcs.net/) like so:
930
931         darcs get http://laconi.ca/darcs/ mublog
932         
933 To keep it up-to-date, use 'darcs pull'. Watch for conflicts!   
934
935 Further information
936 ===================
937
938 There are several ways to get more information about Laconica.
939
940 * There is a mailing list for Laconica developers and admins at
941   http://mail.laconi.ca/mailman/listinfo/laconica-dev
942 * The #laconica IRC channel on freenode.net (http://www.freenode.net/).
943 * The Laconica wiki, http://laconi.ca/trac/
944
945 Feedback
946 ========
947
948 * Microblogging messages to http://identi.ca/evan are very welcome.
949 * Laconica's Trac server has a bug tracker for any defects you may find,
950   or ideas for making things better. http://laconi.ca/trac/
951 * e-mail to evan@identi.ca will usually be read and responded to very
952   quickly, unless the question is really hard.
953
954 Credits
955 =======
956
957 The following is an incomplete list of developers who've worked on
958 Laconi.ca. Apologies for any oversight; please let evan@identi.ca know
959 if anyone's been overlooked in error.
960
961 * Evan Prodromou, founder and lead developer, Control Yourself, Inc.
962 * Zach Copley, Control Yourself, Inc.
963 * Earle Martin, Control Yourself, Inc.
964 * Marie-Claude Doyon, designer, Control Yourself, Inc.
965 * Ciaran Gultnieks
966 * Michael Landers
967 * Ori Avtalion
968 * Garret Buell
969 * Mike Cochrane
970 * Matthew Gregg
971 * Florian Biree
972 * Erik Stambaugh
973 * 'drry'
974 * Gina Haeussge
975 * Ken Sheppardson (Trac server, man-about-town)
976 * Tiago 'gouki' Faria (entrans)
977
978 Thanks also to the thousands of people who have tried out Identi.ca,
979 installed Laconi.ca, told their friends, and built the Open
980 Microblogging network to what it is today.