How can I prevent php error logging in php? I can print errors, but I can't disable error logging(all php errors are appended to error_log
in my host). I have tried to search the net, but I haven't find anything(exept solutions which are not working for me).
My function that shows errors:
function show_errors($log = false) {
if ($log) {
// so what here?
}
error_reporting(E_ALL);
ini_set('display_errors', '1');
}
But remember. I can't use php_flag
s or php_value
s in my .htaccess file because my web server has blocked them.
If your php.ini does not have
safe_mode
oropen_basedir
in effect, you can do thisYou can also use .htaccess at your docroot and add