Release diogenes-0.9.22
[diogenes.git] / debian / README.Debian
1 Diogenes for Debian
2 -------------------
3
4 WEBSERVER CONFIGURATION
5
6   On a Debian system, the default webserver configuration should allow you to
7   run Diogenes. If you have made some configuration changes yourself, you
8   should check the following:
9   
10    - your webserver needs to have PHP support enabled
11    - PHP needs to have MySQL support enabled
12
13
14 GETTING STARTED WITH DIOGENES
15
16   Diogenes will be available at http://localhost/diogenes/ after installation.
17   To make any real use of Diogenes, you will most likely want to set Diogenes's
18   location to a proper URL which is accessible from remote hosts. You can set
19   this URL in the configuration file:
20
21   /etc/diogenes/diogenes.debian.inc.php
22
23   To start using Diogenes, you need to create a user account so that you
24   can log in. You can do so by visiting the following page:
25
26   http://localhost/diogenes/toplevel/boot.php
27   
28   Alternatively, the following MySQL command will allow you to login with the
29   username "root" and no password. You can then change the password upon your
30   first login using Diogenes's user account manager.
31
32   use diogenes;
33   insert into diogenes_auth set username="root",password=MD5(""),perms="admin";
34   
35
36 MANUAL INSTALLATION NOTES
37
38   If during installation you selected not to automatically configure Apache
39   you will have to modify your Apache configuration to include
40   /etc/diogenes/apache.conf.
41   
42   If during installation you selected not to automatically configure MySQL
43   you will have to create Diogenes's database by hand. To do so, you can use 
44   the SQL files found in /usr/share/diogenes/scripts. If you select a manual
45   database installation you will also have to handle database structure
46   upgrades yourself by running the update.php script which is provided in
47   /usr/share/diogenes/scripts.
48   
49
50  -- Jeremy LainĂ© <jeremy.laine@m4x.org>  Mon, 29 Mar 2004 13:24:19 +0200