Log in with username/password: lyceum/lyceum

root/tags/1.0-RC2/doc/Installation.txt

Revision 707, 1.9 kB (checked in by jjb, 2 years ago)
  • fixing ticket:393, resulting in a more simple way to make themes Lyceum compatible
  • cleaning up session cookie structure
  • a couple documentation typos
  • more informative trace information in token functions
  • thanks to marco of http://teknusi.org and ashley of http://bicycle.com
Line 
1 Requirements:
2 MySQL 4.0.x or greater (including 5.x.x)
3 PHP 4.3.x or greater (including 5.x.x)
4
5 You will need to install the files that are in src. The recommended configuration is to leave the directory structure as it is and set the document root of your webserver to src/lyceum. If your web host does not allow you to customize the document root, or for some other reason you want all the files to live in the same level, you may move /src/lib, /src/config, and /src/installation to within src/lyceum, and then change PRIVATE_REL_PATH in src/lyceum/private.php accordingly (for more information, see the comments in private.php).
6
7 1] Files and directories that must be writable by the webserver:
8
9 src/lyceum/
10 src/lyceum/wp-comments-post.php
11 src/lyceum/wp-content/blogs/
12
13 2] Adjust settings:
14
15 • Rename src/config/wp-config-sample.php to src/config/wp-config.php
16 • Edit the following settings in wp-config.php:
17    DB_NAME
18    DB_USER
19    DB_PASSWORD
20    DB_HOST
21    WEBROOT
22    MAINDOMAIN
23
24 • If you are a developer, set LYCEUMDEBUG to true, enter a name for your test installation and an email address for the admin, and uncomment those lines.
25
26    define('LYCEUMDEBUG', false);
27    ...
28    //define('SITETITLE', 'Local Lyceum Development Installation');
29    //define('ADMINEMAIL', 'put your email address here');
30
31 • If you are using a Windows server, either set USELOGS to false, or set LOGDIR to something writable by the webserver:
32
33    define('USELOGS', true); //If you are having problems installing on windows, make this 'false'
34    define('LOGDIR', '/tmp/');
35
36
37 3] (optional) If you want to use subdomains, follow the instructions in doc/Subdomains.txt, then come back here and continue below.
38
39 4] Browse to http://example.com/wp-admin/install.php
40
41 Follow the instructions to initialize your installation and create an admin account.
42
43 5] Browse to http://example.com/. Ta-da!
44
45 6] For enhanced security you may wish to delete src/lyceum/wp-admin/install.php.
Note: See TracBrowser for help on using the browser.
Log in with username/password: lyceum/lyceum