spires Posted October 15, 2010 Share Posted October 15, 2010 Hi. I'm trying to create a directory folder on my server. I am using the following code, but keep getting an error? The images folder is set to 0777 on the server, and the file is located just outside the images folder. $uID = $new_user->id; mkdir('/images/'.$uID.'/main/thumb', 0777, true); mkdir('/images/'.$uID.'/main/large', 0777, true); Error: Warning: mkdir() [function.mkdir]: Permission denied in /home/p/o/powtest/web/public_html/test_users.php on line 19 Warning: mkdir() [function.mkdir]: Permission denied in /home/p/o/powtest/web/public_html/test_users.php on line 20 Thanks for your help Link to comment https://forums.phpfreaks.com/topic/215955-mkdir-help-please/ Share on other sites More sharing options...
the182guy Posted October 15, 2010 Share Posted October 15, 2010 Are you trying to create new folders in images, in the root of your webserver? Or are you trying to create them in the public htdocs of images/[folder]? If it's the latter you need to remove the leading / in the mkdir call and set the correct path or use the current directory symbol ./ as this is telling PHP to create the folder in /images/[folder] not /home/p/o/powtest/web/public_html/images/[folder] Link to comment https://forums.phpfreaks.com/topic/215955-mkdir-help-please/#findComment-1122555 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.