Jump to content

File upload problem


LuciBKen

Recommended Posts

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

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.