How can I see the errors or warnings from PHP5? if I want to debug a script where are the PHP5 log files?
Take a look in your php.ini. There you can take a look at error_reporting, display errors, log errors etc. The std. error_reporting is E_ALL ~ E_NOTICE (means all warnings except notices). But you won't see suppresed errors, if a function has an @ before, e.g. @fopen(..); And please post to the right forum next time. thx