views:

21

answers:

1

In my .htaccess file I need to turn on the following:

php_flag display_errors On
php_value error_reporting 2147483647

However I only want to do this if my IP is visiting the site.

Any ideas?

Something like...

if (ip == "x.x.x.x") {
  php_flag display_errors On
  php_value error_reporting 2147483647
}

Need to do this in .htaccess NOT in the PHP thanks!

+1  A: 

There is no easy way to do this in the httpd configuration. Consider using a script in auto_prepend_file instead.

Ignacio Vazquez-Abrams