dmccabe Posted June 5, 2008 Share Posted June 5, 2008 I am using Wamp (apache) on my web server and if there was an error on a page where I missed semi colon or something I used to get the "error on line blah" messages. For some reason I don't get any errors any more and if something is wrong all I get is a blank page. Have I disabled something? if so what and and how do I turn it back on? Link to comment https://forums.phpfreaks.com/topic/108853-solved-no-error-message-why/ Share on other sites More sharing options...
trq Posted June 5, 2008 Share Posted June 5, 2008 Take a look at the error_reporting and display_errors directives within your php.ini. Link to comment https://forums.phpfreaks.com/topic/108853-solved-no-error-message-why/#findComment-558399 Share on other sites More sharing options...
dmccabe Posted June 6, 2008 Author Share Posted June 6, 2008 I have this enabled in my php.ini: Quote error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT display_errors = On Yet all I get is a white page when there is an error. If copy the same page to my localhost and run it there, then I get the usual php error messages. Any ideas? Link to comment https://forums.phpfreaks.com/topic/108853-solved-no-error-message-why/#findComment-558953 Share on other sites More sharing options...
GingerRobot Posted June 6, 2008 Share Posted June 6, 2008 You might want to check which PHP ini is actually being used. If you run this: <?php phpinfo(); ?> And check that you are editing the same one as is given under 'Loaded Configuration File'. Also, make sure you restart apache after making the changes. You might also want to check that PHP is being parsed. Make sure that if you view the source, you don't just get the PHP code. Link to comment https://forums.phpfreaks.com/topic/108853-solved-no-error-message-why/#findComment-558966 Share on other sites More sharing options...
dmccabe Posted June 6, 2008 Author Share Posted June 6, 2008 Well done you I thought it was the php.in within the WAMP directory, but it is actually in c:\php\ Changed Display_errors to (ON) and all is good Thanks! Link to comment https://forums.phpfreaks.com/topic/108853-solved-no-error-message-why/#findComment-558973 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.