I am trying to write a query to a file for debugging. The file is in database/execute.php. The file I want to write to is database/queries.php.
I am trying to use file_put_contents('queries.txt', $query)
But I am getting
file_put_contents(queries.txt) [function.file-put-contents]: failed to open stream: Permission denied
I have the queries.txt file chmod'd to 777, what could the issue be?


php.inifile for anything that might deny file access? – Hello71 Feb 7 '11 at 3:16nobodyorapachedoes not have read access to the directory the file is in - even though its 777. – Yzmir Ramirez Feb 7 '11 at 4:17