Reputation: 17467
In asp I can access the log file in \Inetpub\logs\LogFiles\W3SVC1
there something similar on php language?
Upvotes: 0
Views: 286
Reputation: 140993
You have to go in you php.ini
file.
Activate the log with this:
display_errors = On
Also, you may want to check where the log is written:
error_log = /var/log/YourFileWithLog.log
Upvotes: 3