Jump to content

Upload File


usadarts

Recommended Posts

Thank you for the link.......

 

What is this telling me??

Warning: move_uploaded_file(calendar/pictures 151.jpg) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/website/public_html/calendar/postinfo.php on line 22

 

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpN6uVrD' to 'calendar/pictures 151.jpg' in /home/website/public_html/calendar/postinfo.php on line 22

There was an error uploading the file, please try again!Test Tournament loaded to databaseBack to Calendar Control Panel

Link to comment
https://forums.phpfreaks.com/topic/91622-upload-file/#findComment-469531
Share on other sites

I changed the $target_path = "uploads/"; to calendar

I also have permissions for calendar set at 777

 

<input
name="uploadedfile" type="file">

 

$target_path = "calendar/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded";
} else{
echo "There was an error uploading the file, please try again!";
}

 

Link to comment
https://forums.phpfreaks.com/topic/91622-upload-file/#findComment-469536
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.