Sorry, that's not what I meant. I want to keep Error Reporting ON.
However, wamp used to display native php error reporting like;
Notice: Undefined variable: leftLinks in /var/www/home/shop/script/header.php on line 124
Notice: Undefined variable: q in /var/www/home/shop/script/header.php on line 138
Notice: Undefined variable: welcome in /var/www/home/shop/script/header.php on line 148
Now however what it does it prints out orange boxes on the screen and says stuff like;
( ! ) Notice: Undefined variable: mysli in C:\Projects\localhost\account_pg\index.php on line 8 Call Stack # Time Memory Function Location 1 0.0010 373776 {main}( ) ..\index.php:0
( ! ) Fatal error: Call to a member function result() on a non-object in C:\Projects\localhost\account_pg\index.php on line 8 Call Stack # Time Memory Function Location 1 0.0010 373776 {main}( ) ..\index.php:0
I have also the same problem. I do not want to turn off errors but, these orange background headline is big and it fulls all page in a weird way . older plain error system is better.
No need to CSS errors like they did >
<th colspan="5" align="left" bgcolor="#f57900"><span style="background-color: rgb(204, 0, 0); color: rgb(252, 233, 79); font-size: x-large;">( ! )</span> Notice: Undefined index: language in C:\wamp\www\includes\session.php on line <i>6</i></th>
stevenmartin99 Wrote: ------------------------------------------------------- > New wamp has debugging tools enabled- you will > need to disable the extention xdebug
Hi all. I was having no joy with these solutions either. What I want is for un-indexed values to not be reported (notices and warnings), but I want real errors to still be reported. If you have been making changes to the php.ini file in ...bin/php/php5.3.4/php.ini, the controlling php.ini file is actually in ...bin/apache/apache2.2.17/bin/php.ini (adjust for different versions of php or apache)
In that file, making the change error_reporting = E_ALL & ~E_NOTICE works as it should without changing the settings or losing all error reporting.