Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My php script is located in /var/www/html/users/dev. I need to create a folder in /var/www/images/ - something like /var/www/images/test/test/ and store here some images.

But when i trying is with mkdir($file_dir, 0777); where $file_dir is /var/www/images/test/test/ i receive an error:

Warning: mkdir(): No such file or directory in /var/www/html/users/dev/classes/sites.class.php...

share|improve this question
2  
either permissions or you have to set true as third parameters to recursively create it. – Jack Sep 4 '12 at 6:26
If using windows see this – Vishal Sep 4 '12 at 6:29

3 Answers

up vote 5 down vote accepted

Because "/var/www/images/test" does not exists, so you can not mkdir("/var/www/images/test/test")

You can specify the "$recursive" to TRUE, and it will work, like this:

mkdir($file_dir, 0777, TRUE);

share|improve this answer

if it is Linux you have set permissions to your parent directory 1st.

sudo chmod -R 777 /path of ur directory.
share|improve this answer
If that was the issue, the error message would be different. – Kai Mattern Sep 4 '12 at 6:38

Try

mkdir($file_dir, 0777, true);

The third parameter ('recursive') allows you to specify a path of which all directories will be created. If you don't, only the last directory ('test') will be created, and the whole path before that must exist.

The PHP documentation is quite clear about that.

share|improve this answer

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.