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 mkdir and apache ownership

EDITED TO REFLECT NEW PROBLEM:

Thanks to your help I can create a directory within a directory recursively, but I am unable to create multiple folders within those created folders.

Code:

$timelineID = trim(mysql_prep($_POST['timelineID']));
mkdir("timelines/{$timelineID}/audio", 0777, true);
mkdir("timelines/{$timelineID}/image", 0777, true);
mkdir("timelines/{$timelineID}/product", 0777, true);

Again, the first mkdir() executes successfully, the second one does NOT.

Error: Warning: mkdir() [function.mkdir]: SAFE MODE Restriction in effect. The script whose uid/gid is 206601/206601 is not allowed to access (the directory I just made) owned by uid/gid 25000/25000 in (file.php) on line 13

share|improve this question
1  
Have your tried: mkdir("timelines/{$timelineID}/audio", 0777, true);? Without the umask? With true the dirs are created recursively. – John Dec 4 '12 at 22:26
Also check you have "just made that directory" and didn't create it in FTP/SSH first. – Robbie Dec 4 '12 at 22:28
That works for one directory, thanks! but it doesn't work for multiple... here is my code for multiple... the first one works the others fail – Daniel F. Dietzel Dec 4 '12 at 22:33
mkdir("timelines/{$timelineID}/audio", 0777, true); mkdir("timelines/{$timelineID}/image", 0777, true); mkdir("timelines/{$timelineID}/product", 0777, true); – Daniel F. Dietzel Dec 4 '12 at 22:33
@Robbie can you elaborate? – Daniel F. Dietzel Dec 4 '12 at 22:40
show 2 more comments

marked as duplicate by Baba, Robbie, Michael Berkowski, Ram kiran, Praveen Kumar Dec 6 '12 at 5:24

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

up vote 2 down vote accepted

Possibly a duplicate: PHP mkdir and apache ownership, and it cannot be resolved under safe-mode according to it.

share|improve this answer
Thanks. It looks like I had to switch from PHP Fast to PHP Flex (I'm using nearlyfreespeech.net). This turned safe mode off, the scripts work now. Thanks. – Daniel F. Dietzel Dec 4 '12 at 22:52
This is not how to identify duplicate ... close Question instead – Baba Dec 4 '12 at 22:58
I would close it, but it's relevant to those using nearlyfreespeech.net, which has those specific fast/flex options. – Daniel F. Dietzel Dec 5 '12 at 1:58
mkdir(path,mode,recursive,context)

with recursive and context being optional params

e.g.

mkdir("timelines/{$timelineID}/audio", 0777, true);

works on PHP 5+

see: http://php.net/manual/en/function.mkdir.php

share|improve this answer
we got that to work, but it doesn't work for multiple folder creations. – Daniel F. Dietzel Dec 4 '12 at 22:37
Perhaps you have a umask issue? Did you check the permissions on the automatically-created intermediate directory? You could try clearing the umask with $old = umask(0); before the mkdir call to see if that's the problem (and umask($old) afterward to restore it). – Mark Reed Dec 4 '12 at 22:46

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