Uploading image file from website on yahoo server causes 410 gone error message when trying to acces
- by creocare
I have a form that lets users upload a photo of themselves. This seems to work. The photo does exist on the server once uploaded. When I try to access the file I get a "403 forbidden - you don't have permission to access this url on this sever" and also I get "Additionally, a 410 Gone error was encountered while trying to use an ErrorDocument to handle the request."
This is the code I have for uploading the image.
$target_path = "images/";
$target_path = $target_path . basename( $_FILES['uploadpic']['name']);
if(move_uploaded_file($_FILES['uploadpic']['tmp_name'], $target_path))
{
echo "The file ". basename( $_FILES['uploadpic']['name']). " has been uploaded";
}
else
{
echo "There was an error uploading the file, please try again!";
}