Files[] shows an error

I’m trying to get a file to upload, and was getting an error, so when I try printing the FILES,

echo 'FILES[]<pre>';print_r($_FILES);echo '</pre';

I get

FILES[]

Array
(
    [Image] => Array
        (
            [name] => 85480610.jpg
            [type] => 
            [tmp_name] => 
            [error] => 3
            [size] => 0
        )

)

What does the error mean?

I gather it means the file was partially uploaded, why?

Could be a couple of different things.
Permissions, file space, corrupt upload file, browser issue, connection timing out or dropping.

What are you uploading - is it a valid jpeg file? Have you tried other files?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.