Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Have you looked through the php.ini file for anything that might deny file access? – Hello71 Feb 7 '11 at 3:16
1  
also make sure the directory is chmod'd right – Crayon Violent Feb 7 '11 at 3:21
also try using the absolute filename. It might just be that your interpretation of current folder is different from PHP's – am75 Feb 7 '11 at 3:32
1  
Can you double-check that chmod status? – Jonah Feb 7 '11 at 3:32
@Crayon Violent is correct...your PHP script running as nobody or apache does not have read access to the directory the file is in - even though its 777. – Yzmir Ramirez Feb 7 '11 at 4:17

4 Answers

up vote 6 down vote accepted

Try adjusting the directory permissions.

from a terminal, run chmod 777 database (from the directory that contains the database folder)

apache and nobody will have access to this directory if it is chmodd'ed correctly.

The other thing to do is echo "getcwd()". This will show you the current directory, and if this isn't '/something.../database/' then you'll need to change 'query.txt' to the full path for your server.

share|improve this answer
3  
Isn't 777 a security risk? – hitautodestruct Jan 20 at 8:32

For anyone using Ubuntu and receiving this error when loading the page locally, but not on a web hosting service,

I just fixed this by opening up nautilus (sudo nautilus) and right click on the file you're trying to open, click properties > Settings > and give read write to 'everyone else'

share|improve this answer

Realise this is pretty old now, but there's no need to manually write queries to a file like this. MySQL has logging support built in, you just need to enable it within your dev environment.

Take a look at the documentation for the 'general query log':

http://dev.mysql.com/doc/refman/5.1/en/query-log.html

share|improve this answer

Furthermore, as said in file_put_contents man page in php.net, beware of naming issues.

file_put_contents($dir."/file.txt", "hello");

may not work (even though it is correct on syntax), but

file_put_contents("$dir/file.txt", "hello");

works. I experienced this on different php installed servers.

share|improve this answer
7  
This is not correct. $dir."/file.txt" is functionally equivalent to "$dir/file.txt" in all cases, assuming $dir is a string. Furthermore, this behavior is not documented on php.net, as Kivanc claims. – mattbasta May 27 '12 at 5:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.