I am currently developing (or atleat trying to) a web based uploader, the form I am using is very simple
<form method=\"post\" action=\"do_upload.php\" enctype=\"multipart/form-data\">
File to Upload:
<br>
<input type=\"file\" name=\"img1\" size=\"30\">
<input type=\"hidden\" name=\"folder_name\" value=\"$folder_name\" size=\"30\">
<input type=\"hidden\" name=\"username\" value=\"$username\" size=\"30\">
<P>
<input type=\"submit\" name=\"submit\" value=\"Upload File\">
</form>
while the do_upload.php page looks like this:
<?
if ($img1_name != "") {
@copy("$img1", "$folder_name/$img1_name") or die ("Couldnt copy the file!");
} else {
die("no input file specified");
}
?>
However when I tried to test this on a secure server (with an SSL) the do_upload.php page was kind enough to tell me that "no input file specified"
Anyone have any ideas, whats gone wrong???