wmguk Posted May 22, 2008 Share Posted May 22, 2008 Hey Guys This is my code, now I have managed to get the mkdir working but the copy isnt working, basically I need to duplicate getpics.php from the clients directory, to the the clients/$login directory... <?php $thisdir = "/var/www/vhosts/domain.co.uk/httpdocs/clients"; $login = $_GET['login']; $getpics = "/var/www/vhosts/domain.co.uk/httpdocs/clients/getpics.php"; $newdir = "/var/www/vhosts/domain.co.uk/httpdocs/clients/$login/getpics.php"; if (is_dir($thisdir ."/$login") ) exit(); if(mkdir($thisdir ."/$login" , 0755, true)) { } else { echo "<p class='footer'>Failed to create directory... <br> Contact <a href='mailto:[email protected]'>Drew</a></p>"; } echo copy("$getpics", "$newdir"); ?> Any thoughts, or any better ways to integrate this script i have missed Thanks in advance Link to comment https://forums.phpfreaks.com/topic/106831-solved-mkdir-and-copy-function-fails/ Share on other sites More sharing options...
wmguk Posted May 22, 2008 Author Share Posted May 22, 2008 hmmm, ok, nope the mkdir doesnt work infact it seems like this script isnt working at all basically it has created a folder but with 700 permission, basically not allowing me to do anything to it!! any ideas? Link to comment https://forums.phpfreaks.com/topic/106831-solved-mkdir-and-copy-function-fails/#findComment-547693 Share on other sites More sharing options...
Darklink Posted May 22, 2008 Share Posted May 22, 2008 You are making a dir in a directory with a 0777 permission applied right? Link to comment https://forums.phpfreaks.com/topic/106831-solved-mkdir-and-copy-function-fails/#findComment-547696 Share on other sites More sharing options...
wmguk Posted May 22, 2008 Author Share Posted May 22, 2008 sure am seems very flakey, every now and again it works, and assigns 755, but then it stops and goes to 700, but either way the copy doesnt work at all this is mental Link to comment https://forums.phpfreaks.com/topic/106831-solved-mkdir-and-copy-function-fails/#findComment-547698 Share on other sites More sharing options...
DylanBlitz Posted May 22, 2008 Share Posted May 22, 2008 I'd try and see if this will help. if(mkdir($thisdir ."/$login" , 0755, true)) { chmod($thisdir ."/$login", 4755); } Link to comment https://forums.phpfreaks.com/topic/106831-solved-mkdir-and-copy-function-fails/#findComment-547705 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.