I am using this script: to upload a picture file and I get the error below:
"Unable to create 'hgh6.gif': Permission denied in
/home/vhtdocs/archipro/do_upload.php on line 13
Couldn't copy the file!" - What am I doing wrong
<form enctype="multipart/form-data" method="post" action="do_upload.php">
<p><strong>File to Upload:</strong><br>
<input type="file" name="img1" size="30"></p>
<P><input type="submit" name="submit" value="Upload File"></p>
</form>
upload file:
<?
// if $img_name isn't empty, try to copy the file
if ($img1_name != "") {
copy("$img1", "/images/$img1_name")
or die("Couldn't copy the file!");
} else {
// if $img_name was empty, die and let us know why
die("No input file specified");
}
?>
Warning: Unable to create 'hgh6.gif': Permission denied in
/home/vhtdocs/archipro/do_upload.php on line 13
Couldn't copy the file!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php