PHP5 logs

Discussion in 'Programming/Scripts' started by ferradeira, Jul 9, 2007.

  1. ferradeira

    ferradeira New Member

    How can I see the errors or warnings from PHP5?
    if I want to debug a script where are the PHP5 log files?
     
  2. Ben

    Ben Active Member Moderator

    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
     
  3. planet_fox

    planet_fox Member HowtoForge Supporter

    and see in your web

     

Share This Page