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.

file1.php - This file gets $_FILES['foto'] and upload it to $Dir_Upload

$Dir_Upload = "httpdocs/upload/";
    ini_set('post_max_size', '8M');
    ini_set('upload_max_filesize', '8M');

....

     if (isset($_FILES['foto']) AND ($_FILES['foto']['size'] != 0) ) {
         $file_temporaneo = $_FILES['foto']['tmp_name'];
        echo  $file_temporaneo;
         $nomefile1 = $_FILES['foto']['name'];
         $estensione_file=estensione($nomefile1);
         $nomefile1=uniqid(file_).".".$estensione_file;
         if (move_uploaded_file($file_temporaneo, $Dir_Upload  . $nomefile1)){
            //echo "Il file รจ stato caricato";
         } else {
            //print_r(error_get_last());
            echo '<pre>
Your file was not uploaded please try again
here are your debug informations:
'.print_r($_FILES) .'
</pre>'; 
            //echo "ERROR";
             }
     }else {$nomefile1=NULL;}

files should be moved from /tmp directory to upload folder. but error occurs.

/tmp/phpyOFblKhttpdocs/upload/file_4e9c0dd6a9be7.jpg

Array ( [type] => 2 [message] => move_uploaded_file() [function.move-uploaded-file]: Unable to access httpdocs/upload/file_4e9c0dd6a9be7.jpg [file]

httpdocs/upload is set to 0777

share|improve this question
3  
You need to post some code. This is like saying "asdfgh. What's wrong?" Two of seven of your questions have been closed, and 4 don't even have answers. Surely this tells you something about the way you ask your questions? – Bojangles Oct 17 '11 at 11:20
I have added some code to my previous post. Thanks. – user954590 Oct 17 '11 at 11:59

closed as not a real question by Bojangles, Damien Pirsy, fireeyedboy, 0A0D, Graviton Oct 17 '11 at 13:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

try with absolute path to your upload dir ($Dir_Upload)

share|improve this answer

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