LuciBKen Posted June 25, 2007 Share Posted June 25, 2007 Can someone that knows something about uploading files from a form please lookk at this code and tell me why it will not upload to the right directory? When I make minor changes, it will upload, but to the wrong directory, as it is coded now, it simply won't upload at all. My directory for the upload permissions are 777. Can anyone help? function RecursiveMkdir($path) { if (!file_exists($path)) { RecursiveMkdir(dirname($path)); mkdir($path, 0777); } } $uploadFile = $file_Name ; if (!is_dir(dirname($uploadFile))) { RecursiveMkdir(dirname($uploadFile)); } move_uploaded_file( $file_Temp , $uploadFile); $file_URL = "http://www.hawaiisoccermag.com/html/video/".$file_Name ; $uploadFile = $file2_Name ; if (!is_dir(dirname($uploadFile))) { RecursiveMkdir(dirname($uploadFile)); } move_uploaded_file( $file2_Temp , $uploadFile); $file2_URL = "http://www.hawaiisoccermag.com/html/video/thumb/".$file2_Name ; Thanks ahead of time guys! Link to comment https://forums.phpfreaks.com/topic/57168-file-upload-problem/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.