hello to everyone and thanks in advance for your help. I am running Apache/2.0.50 (Win32) PHP/5.0.1, i dont want errors to be displayed in my html, when i change the display_errors directive to Off it still continues to throw up errors on me even after restarting, any ideas?
/peter
Problems with display_errors configuration
Moderator: General Moderators
; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below). Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = Off
^ php.ini
thanks
/peter
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below). Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = Off
^ php.ini
thanks
/peter
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
Hmm.. although I don't have php5 running on my machine, I don't think the ini has really changed much since php4. So, my guess would be that maybe you have an htaccess that may be resetting it somehow, or you didn't change the right php.ini file.. run this script and find the display errors setting inside it:
Code: Select all
<?php
phpinfo();
?>