Joined: 09 Jun 2005 |
Posts: 1 |
|
|
 |
Posted: Wed Jun 08, 2005 10:11 am |
|
 |
 |
 |
 |
PHPed 3.3.1.
WindowsXP pro.
Trying to debug a problem with uploading image files for manipulation by PHP. All works fine with smaller jpg files but a big file I am testing with (little over 5Mb) fails without error - it acts as if the file was not uploaded to the server.
The debug var window shows:-
$HTTP_POST_FILES
photo1
name "landscape1.jpg"
type ""
tmp_name ""
error "2"
size ""
photo2
...
error "4"
I assume error in photo2 (and photo3) refers to the fact I didnt enter anything into the file upload form field so not worried about that.
However I am hoping that the 'error 2' associated with photo1 will give me some clue as to what is going wrong.
Where can I find what this error means?
Tried google/PHPed help to no avail.
Thanks
|