This is really a codicil to Lix's answer.
The most frequent reason for this is when you are running you scripts under Apache using mpd_php5, since your php process will be running as apache UID (www-data or whatever). However, by default your debug directory will be own by your account with 755 permissions.
I would suggest that it is bad practice to set the permissions to 777 as this will allow anyone to create files in your directory, but instead temporarily set the permissions to 777 then use a Q&D script to create a debug/logs and set its permissions to 755, before returning the debug directory to 755.
You will find that the debug/logs directory is now own by the Apache UID, and can be written to by any Apache process.
One wrinkle here is that you will need to use a script to delete old debug files as your own account won't have the privilege to do this.
debugfolder? – Lix Jul 4 '12 at 9:00error_reporting(E_ALL | E_STRICT);to the beginning of your php file or change it inphp.ini– jexact Jul 4 '12 at 9:06