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.

Possible Duplicate:
PHP code mkdir('images','0777') creates a folder with 411 permissions! Why?

I am trying to create a folder on my server using php i have been trying this and it is not working it set it to 411 does anyone know why this is happening?

mkdir($create_path, "0777");

i have also tryed chmod but i am getting a safe mode error.

chmod($create_path, '0777');
share|improve this question

marked as duplicate by Ignacio Vazquez-Abrams, Pekka 웃, Wooble, Paul, Scott Saunders Nov 9 '10 at 13:50

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Both chmod() and mkdir() accept an integer for $mode. It is easier to use octal numbers in that case:

mkdir('/path', 0777); // using octal
mkdir('/path', 511);  // same thing as previous but using decimal

Be careful and make sure you prepend your mode (i.e.: 777) with a 0 to tell the parser to use octal. Omitting the 0 will make it use decimal and will give a different result.

Since '0777' (string) is converted to decimal 777, it is not the same mode as 0777.

share|improve this answer

Second parameter should be integer as you can see here. so use this one

mkdir($create_path, 0777); // it should works!

share|improve this answer
this now set it to 755 – Gully Nov 9 '10 at 13:50

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