Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

running on localhost win7 xampp, this code comes up with error

$source = $_FILES['fupload']['tmp_name'];
$upload_dir = "invform/upload/";
 if (file_exists($upload_dir) && is_writable($upload_dir)) {
       move_uploaded_file( $source, $upload_dir ) or die ("Couldn't copy");
  }
  else {
        die ('Upload directory is not writable, or does not exist.');
  }

the error is Couldn't copy means that the directory is writable

$source is : D:\\xampp\\tmp\\phpFB1.tmp

what would be the problem?

share|improve this question
Please print the values of $source and check – sudheshna Jul 4 '11 at 9:50
I have checked, be echo $source; it prints: D:\\xampp\\tmp\\phpFB1.tmp – Youhan Jul 4 '11 at 9:52

3 Answers

up vote 4 down vote accepted

The destination of move_uploaded_file should be a filename:

$source = $_FILES['fpupload']['tmp_name'];
$upload_dir = "invform/upload/";
$dest = $upload_dir.$source; // gives: invform/upload/phpFB1.tmp

Check move_uploaded_file on the manual.

share|improve this answer
yes that's right, it was my mistake copying the code here, I edited the code above.~ seems I have problems with copy either :D – Youhan Jul 4 '11 at 9:57
@safaali I see you 've updated your code after my answer. Does that work now? – Damien Pirsy Jul 4 '11 at 9:57
yep the problem is solved , I am an happy idiot lol – Youhan Jul 4 '11 at 9:59
I changed the code to the original mistake in order to let the mess be there ;) – Youhan Jul 4 '11 at 10:01
eheh, it happens. Glad it's solved now! – Damien Pirsy Jul 4 '11 at 10:02

Try this, you missed the file name in the target directory

    $source = $_FILES['fupload']['tmp_name'];
    $upload_dir = "invform/upload/";
     if (file_exists($upload_dir) && is_writable($upload_dir)) {
           move_uploaded_file( $source, $upload_dir.$_FILES['fupload']["name"]  ) or die ("Couldn't copy");
      }
      else {
            die ('Upload directory is not writable, or does not exist.');
      }
share|improve this answer
thank you solved – Youhan Jul 4 '11 at 10:01

Try checking the $_FILES['fupload']['error'] entry against http://php.net/manual/en/features.file-upload.errors.php move_uploaded_file() can fail for reasons other than an unwritable destination directory (i.e. if the form doesn't have the correct enctype attribute, the file will not be uploaded correctly)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.