diff --git a/docs/changelog/5.x.x.txt b/docs/changelog/5.x.x.txt index 6aede8b3c..3603be2f2 100644 --- a/docs/changelog/5.x.x.txt +++ b/docs/changelog/5.x.x.txt @@ -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 diff --git a/docs/install.txt b/docs/install.txt index f6afb27bb..674e1797d 100644 --- a/docs/install.txt +++ b/docs/install.txt @@ -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";