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.

I am trying to implement a file upload to a pre-existing form that I know works, and still does aside from the file upload section.

Essentially, I am unsure of the error and how to fix it. The outputs are only what I have put in there based on my understanding of the code

I get the following output from the below code:

OUTPUT

Array
(
    [chart-image] => Array
        (
            [name] => Chart example.jpg
            [type] => image/jpeg
            [tmp_name] => /tmp/php5iGbQD
            [error] => 0
            [size] => 50222
        )

)
CAN'T MOVE FILE

FORM

<form id="<?php echo $type ?>-trade" enctype="multipart/form-data" method='post' action='<?php echo $url; ?>'>
*snip*
    <input type="hidden" name="MAX_FILE_SIZE" value="52428800" />    
    <input name="chart-image" type="file" />
*snip*
</form>

ACTION PAGE

snip
 print_r($_FILES);

if($_FILES['chart-image']['error'] == '0'){
    $uploaddir = '/images/charts/';
    $file = basename($_FILES['chart-image']['name']);

    $uploadfile = $uploaddir . $file;
    if(file_exists($_FILES['chart-image']['tmp_name'])){
       if (move_uploaded_file($_FILES['chart-image']['tmp_name'], $uploadfile)) {
          echo "GOOD";
       } else {
           echo "CAN'T MOVE FILE";
       }
    } else {
       echo "ERROR";
    }

}
else{
    echo "Error In Uploading File";
}
*snip*

Additional Info

  • I am running wordpress
  • Folder is chmod 777
  • Upload forms enabled in php.ini
  • File is smaller than max filesize in both <form> and php.ini
share|improve this question
error_reporting(E_ALL); ini_set('display_errors', true); This should give you a warning about what went wrong. – deceze Dec 12 '11 at 5:07
what size is your file? sometimes browser does not permit you that upload a big file. – ProSoft Dec 12 '11 at 5:13

1 Answer

up vote 0 down vote accepted

I tried this and it's working fine:

<?php
//print_r($_FILES);


if($_FILES['chartimage']['error'] == '0'){
    $uploaddir = 'images\\';
    $file = ($_FILES['chartimage']['name']);

    $uploadfile = $uploaddir . $file;

    if(file_exists($_FILES['chartimage']['tmp_name'])){
       move_uploaded_file($_FILES['chartimage']['tmp_name'], $uploadfile);
    } else {
       echo "ERROR";
    }

}
else{
    echo "Error In Uploading File";
}
?>

When you printed out $uploadfile = $uploaddir . $file; echo $uploadfile; with your code, I got: images/C:\WINDOWS\Temp\php76.tmp which is the source of the problem.

share|improve this answer
So did it work? – D. Rattansingh Dec 12 '11 at 21:47
Sorry I am an Aussie and you posted just as I was clocking off from work. You got me on the right tangent this was the code that got it to work '$realpath = realpath($PHP_SELF); $uploaddir = $realpath . '/images/charts/'; Due to everything in wordpress being executed from index.php and the folder I wanted to move to was in the root it worked. It is essentally server/path/to/public_html – Joshua Dec 13 '11 at 1:01
You make me remember the days when it was Mc Grath (Australia) vs Lara (Trinidad) – D. Rattansingh Dec 13 '11 at 16:13
Lol. I didn't realise I was stating that as a inter-rivaly :P – Joshua Dec 13 '11 at 23:20

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.