upload.php on line 54

See all posts See thread Reply

Re: upload.php on line 54 new!
by Charles Canada, 16 years, 10 months ago
"In your browser, replace upload.php with index.html and you should be fine."

Colin (Thanks for your interest) I already am using the Index.html. I put in a file and press the upload button. I end up on "upload.php" because of the form action="upload.php" on the index.html pageReply
Re: upload.php on line 54 new!
by colin, 16 years, 10 months ago
For some reason, the data of your form is not transmitted to upload.php.

Try to add the following at the start of upload.php
die(print_r($_POST, 1) .print_r($_FILES, 1))

Check if your browser is properly set, and if your server is OK. It seems to be a local problem.Reply