Where is "error_log =" in php7?

A

Anonymous

Guest
You need to un-comment the line:

Code:
;error_log = php_errors.log

Should read
Code:
error_log = /var/log/php/error.log

You will need to pay a great deal of attention to these tiny details and un-learn ignoring punctuation marks since they will cause you all sorts of grief if you don't.
 
And have you learned about file permissions?

I see you are using ubuntu (top person), if you are not able to save the changes to your file it will probably be because the file permissions are not set.

Have fun :)
 
Back
Top