views:

48

answers:

1

Hello all,

I am trying to setup PHP to log errors locally so that I can solve this problem.

However, I can't even get this to work. I have followed this tutorial, but nothing. Does it only log fatal errors or what?

Is there anything else I need to make sure of?

+1  A: 

need these settings:

log_errors = on

error_reporting = E_ALL

if you want to set these in .htaccess, you can do somn like:

php_value log_errors 1

php_value error_reporting 6143

jspcal
This all set by me, but it still doesn't log errors!
Abs
Ok, the htacess has worked for me. I will just have to use this! Thanks. :)
Abs