From 5e67d638fc19dcefa1208431ed194bd57ceaee7b Mon Sep 17 00:00:00 2001 From: Jeremy Newman Date: Thu, 25 Mar 2004 16:29:47 +0000 Subject: [PATCH] * Things inside php.ini stuff added by newman * added the additional contributors * tweaked the look --- README | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README b/README index 1ceb4cb..c762840 100644 --- a/README +++ b/README @@ -3,16 +3,30 @@ WineHQ Application Database Authors: Jeremy Newman Charles Leop + +Contributors: + Paul van Schayck + Chris Morgan + To install locally for testing/hacking: +------------------------------------------------------------------------ + - Symlink from /var/www to the appdb directory + - Copy include/config.php.sample to include/config.php + - Edit include/config.php as you see fit, the default name of the database used in the table creation step below is "apidb", you'll have to modify these files if you change this in config.php + - cd tables, run ./create_tables to create the database tables + - Try to open up localhost/appdb, if you get a directory listing Edit your /etc/apache/httpd.conf "DirectoryIndex" to include index.php so apache will open index.php after not finding index.html/index.htm etc -- Check your /etc/php/php.ini to ensure that 'register_globals = On' as the - appdb uses globals and won't work correctly without this + +- Check your /etc/php/php.ini to ensure that + 'register_globals = On' (variables won't get passed) + 'magic_quotes_gpc = Off' (you would end up with \ everywhere) + 'session.bug_compat_42' = On' (Problem with auto-globals and session variables)