Added Apache 2 instructions to install.txt

This commit is contained in:
Andy Grundman 2003-10-30 18:19:00 +00:00
parent 13a18fc9c6
commit 68d9af5051
2 changed files with 20 additions and 0 deletions

View file

@ -1,5 +1,6 @@
5.5.1
- Fixed bug #829806 preventing users from updating thier passwords from the updateAccount form.
- Added Apache 2 instructions to install.txt. (Thanks to Andy Grundman.)
5.5.0

View file

@ -26,6 +26,7 @@ QnD INSTALL INSTRUCTIONS:
Cache::FileCache (optional)
3. Install Apache (preferably with mod_perl) and set up your config.
If you are using Apache 2, see the additional instructions below.
4. Install MySQL.
@ -49,4 +50,22 @@ QnD INSTALL INSTRUCTIONS:
If it returns all "OK" then you're done. The default admin account
info is "Admin" and "123qwe".
##################################################################
# Apache 2/mod_perl 1.99+ Additional Instructions #
##################################################################
In order to get WebGUI to run under Apache 2, several files need to
be modified after you have completed all of the steps above.
1. In "sbin/preload.perl", comment out the following mod_perl 1 line:
# use Apache::Registry ();
2. Uncomment the next line:
use ModPerl::Registry ();
3. In "www/index.pl", comment out the following line:
# $webguiRoot = "..";
4. Uncomment the next line, making sure to change this to your own
full path to WebGUI:
$webguiRoot = "/data/WebGUI";