masterofollies
01-30-2010, 07:19 PM
I've used this same coding on another website and it worked perfectly. However it won't work on another.
FORM
$page .= '<form enctype="multipart/form-data" action="alliance.php?do=banner" method="POST">';
$page .= '<input type="hidden" name="MAX_FILE_SIZE" value="1500000">
<input type="hidden" name="completed" value="1">';
$page .= '<p><b>Banner Image:</b> <input type="file" name="mailfile" size="chars"><br /><br /><input type="submit" name="submit" value="Make Changes"></form>';
POST SUBMIT
//Start image upload
$newname = uniqid("a").".jpg";
move_uploaded_file($_FILES['mailfile']['tmp_name'],"/aimages/$newname");
//End of request image
The directory aimages is CHMOD to 777.
I get the following errors.
Warning: move_uploaded_file(/aimages/a4b6486f401249.jpg) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/rodgameo/public_html/alliance.php on line 3345
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/var/tmp/phprYUEiY' to '/aimages/a4b6486f401249.jpg' in /home/rodgameo/public_html/alliance.php on line 3345
FORM
$page .= '<form enctype="multipart/form-data" action="alliance.php?do=banner" method="POST">';
$page .= '<input type="hidden" name="MAX_FILE_SIZE" value="1500000">
<input type="hidden" name="completed" value="1">';
$page .= '<p><b>Banner Image:</b> <input type="file" name="mailfile" size="chars"><br /><br /><input type="submit" name="submit" value="Make Changes"></form>';
POST SUBMIT
//Start image upload
$newname = uniqid("a").".jpg";
move_uploaded_file($_FILES['mailfile']['tmp_name'],"/aimages/$newname");
//End of request image
The directory aimages is CHMOD to 777.
I get the following errors.
Warning: move_uploaded_file(/aimages/a4b6486f401249.jpg) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/rodgameo/public_html/alliance.php on line 3345
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/var/tmp/phprYUEiY' to '/aimages/a4b6486f401249.jpg' in /home/rodgameo/public_html/alliance.php on line 3345