The Mask
The Mask

Reputation: 17467

PHP access the log file

In asp I can access the log file in \Inetpub\logs\LogFiles\W3SVC1 there something similar on php language?

Upvotes: 0

Views: 286

Answers (2)

Patrick Desjardins
Patrick Desjardins

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

Naftali
Naftali

Reputation: 146350

You can set a log file in the php.ini

Upvotes: 0

Related Questions