Posted by lawrence k on 01/29/07 23:18
I've a file that starts like this:
<form id="pdsForm" method="post" action="/mcControlPanel.php"
class="mcForm" charset="UTF-8" enctype="multipart/form-data" >
and it contains this input:
<input id="biopic" name="biopic" type="file" />
The script recieving it does this:
$biopic = $this->core->getVar("biopic");
if (is_array($biopic)) {
print_r($biopic);
I get:
Array ( [name] => L-monkeySmall.jpg [type] => [tmp_name] => [error] =>
3 [size] => 0 )
Error 3 is "Array ( [name] => L-monkeySmall.jpg [type] => [tmp_name]
=> [error] => 3 [size] => 0 )". As you can see, 0 kilobytes were
uploaded.
What should I look for? I've been looking on the web for awhile and so
far I've found little useful information about what Error 3 typically
indicates.
[Back to original message]
|