Re: [PHP] Re: Logging fatal errors and timeout

2005-08-08 Thread Richard Davey
Hello RPG, Tuesday, August 9, 2005, 12:52:48 AM, you wrote: RG> Thanks. How do I override PHP settings using .htaccess? php_value include_path ".:/usr/local/lib/php" php_admin_flag safe_mode on etc Look at the manual section titled "How to change configuration settings" for more details (it's

[PHP] Re: Logging fatal errors and timeout

2005-08-08 Thread RPG Gamer
Thanks. How do I override PHP settings using .htaccess? Hello RPG, You cannot catch Fatal run-time errors with that method of error handling. The error has occurred before the script settings have had a chance to be picked up. Check to see if your host allows you to use .htaccess settings to o

Re: [PHP] Re: Logging fatal errors and timeout

2005-08-08 Thread Richard Davey
Hello RPG, Monday, August 8, 2005, 9:34:52 PM, you wrote: RG> I set my error report to 0 just like the ones at RG> http://www.php.net/manual/en/ref.errorfunc.php: error_reporting RG> (0); RG> ... so that I can use the custom error handler function at RG> http://www.php.net/manual/en/ref.errorfun

[PHP] Re: Logging fatal errors and timeout

2005-08-08 Thread RPG Gamer
I set my error report to 0 just like the ones at http://www.php.net/manual/en/ref.errorfunc.php: error_reporting (0); ... so that I can use the custom error handler function at http://www.php.net/manual/en/ref.errorfunc.php. I'm on a shared server, by the way. Hello RPG, Where did you add