I've diffed the config.inc.php against the stock one supplied and have only the minimal changes specifed in the install document.

Hi Ted,
You probably already tried this, but...

Try setting error_reporting to 'everything' in the config.inc.php script to see if the script will tell you where things are going wrong:

error_reporting(E_ALL);


I have not checked the latest version, but in prior versions there is a line like this:


if (!isset($old_error_reporting)) {
   error_reporting(E_ALL);
   @ini_set('display_errors', '1');
}


Just comment the conditional clause so that you know error_reporting and display_errors are on


//if (!isset($old_error_reporting)) {
   error_reporting(E_ALL);
   @ini_set('display_errors', '1');
//}

hth,

Greg

--
FREePHILE
We are 'Open' for Business
Free and Open Source Software
http://www.freephile.com
(978) 270-2425
If you are smart enough to know that you're not smart enough to be an
Engineer, then you're in Business.

_______________________________________________
gnhlug-discuss mailing list
[EMAIL PROTECTED]
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss

Reply via email to