Jump to content

mkdir() help please :)


spires

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.