Code:
Code: Select all
if (filecheck($filenamea) == FALSE )
die ('Image 1 is not of an accepted type');
//if the temp file1 is there copy it to the server
if (@is_uploaded_file($_FILES["imagepath"]["tmp_name"])) {
copy($_FILES["imagepath"]["tmp_name"], "/home/conner/public_html/mobile/storewalkaudit/images/" . $_FILES["imagepath"]["name"]);
echo "<br>";
}Not Acceptable
An appropriate representation of the request resource (my file) could not be found on this server
now this script works fine in a normal IE browser. Anybody know what might be going on here? Or a go around?...THANKS