Jump to content

mkdir, no such file?


Jessica

Recommended Posts

<?php
print $moveTo;
if(!is_dir($moveTo)){
   if(!mkdir($moveTo)){  // 153
      return false;
   }
}?>

 

I get:

/home/mysite/folder/

Warning: mkdir() [function.mkdir]: No such file or directory in /home/mysite/functions.php on line 153

 

When it's

/home/mysite/folder it still doesn't work.

 

Ideas?

Link to comment
https://forums.phpfreaks.com/topic/39431-mkdir-no-such-file/
Share on other sites

777 is default. I can't create the folder, so how can I CHMOD it?

 

Actually, this is weirder - the folder already exists, so it shouldn't be trying to mkdir it - it's like it can't see $moveTo in the is_dir and mkdir commands...but I can print it out right before.

Link to comment
https://forums.phpfreaks.com/topic/39431-mkdir-no-such-file/#findComment-190248
Share on other sites

777 is default. I can't create the folder, so how can I CHMOD it?

 

Actually, this is weirder - the folder already exists, so it shouldn't be trying to mkdir it - it's like it can't see $moveTo in the is_dir and mkdir commands...but I can print it out right before.

I'm sorry, I'm not very PHP-logic.. Maybe someone else can help?

Sorry.. :(

Link to comment
https://forums.phpfreaks.com/topic/39431-mkdir-no-such-file/#findComment-190252
Share on other sites

If it was a permissions issue, wouldn't I get a permissions error? Instead it's acting like the folder doesn't exist when it does. All the folders are 777.

 

Well it didn't like me using the whole path...if I just do 'folder' it works, but not '/home/mysite/folder';

Link to comment
https://forums.phpfreaks.com/topic/39431-mkdir-no-such-file/#findComment-190259
Share on other sites

To me, that indicates that it will be the current path + that, so if just "folder" creates a folder at /home/mysite/folder/, won't that make "/home/mysite/home/mysite/folder/" ?

 

Is this some kind of ini setting or something? I just recently changed the site from php4 to php5 also...

Link to comment
https://forums.phpfreaks.com/topic/39431-mkdir-no-such-file/#findComment-190262
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.