View previous topic :: View next topic |
Author |
Message |
RutgerB -
Joined: 13 Feb 2007 Posts: 2
|
Posted: Tue Feb 13, 2007 8:22 pm Post subject: php_flag display_errors on |
|
|
Hi,
On an apache server I would set the following in an .htaccess file
Code: | php_flag display_errors on
php_flag output_buffering on
php_value output_handler fatal_error_handler |
This would let me see all errors in my scripts, even if a variable wasn't defined before.
What I would like to know is how to do the same in abyss? |
|
Back to top |
|
 |
AbyssUnderground -
Joined: 31 Dec 2004 Posts: 3855
|
Posted: Tue Feb 13, 2007 8:45 pm Post subject: |
|
|
You simply use set_ini() in the php file you want to apply it to. If you have a config file included to every file just put the command in that to apply it to all files in the script. _________________ Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk |
|
Back to top |
|
 |
RutgerB -
Joined: 13 Feb 2007 Posts: 2
|
Posted: Wed Feb 14, 2007 8:51 am Post subject: |
|
|
Thnx alot for the very fast reply:) |
|
Back to top |
|
 |
|