php error reporting doesn't work

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
tr3s
Forum Newbie
Posts: 17
Joined: Mon May 19, 2003 10:29 am
Location: Philippines
Contact:

php error reporting doesn't work

Post by tr3s »

any idea here pls...

i've installed apache 2.0.44 and php on winxp. everything seems doing fine except it shows no error messages or notices even there's error in my script. i've already set up error_reporting to e_all. is this some apache thing?

p.s. it works fine in IIS

thanks!
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

by default the option display_errors is disabled. Errors will not be printed to the output-stream (visible to the client).
You might either enable this or take a look at the server's errlog.
Post Reply