Please see code snippet at the end of this post...
I consistently get back an error code of 0 when attempting to use move_uploaded_file to move a tmp file into another directory. I've confirmed that the directory exists and the permissions are set to 775 on it. I've also checked with the server admin and he says he's not seeing any errors in the error log that would explain the issue I'm having.
How do I get around an error code of 0 when using move_uploaded_file?
$audio_dir = "/mbc/data/audio/";
if (isset($_POST['upload_audio'])) {
$title = mysql_real_escape_string($_POST['audio_title']);
$category = mysql_real_escape_string($_POST['audio_category']);
$audio_name = basename($_FILES['audio_file']['name']);
$uploadfile = $audio_dir.$audio_name;
$query = mysql_query("SELECT COUNT(*) FROM media where path = '" . $audio_name . "'");
$result = mysql_result($query, 0, 0);
if (($title == '') || ($title == NULL) ||
($category == '') || ($category == NULL) ||
($audio_name == '') || ($audio_name == NULL)) {
echo "<span class='error'>Title, Category and Audio file are required fields</span>";
} else if ($result > 0) {
echo "<span class='error'>Media $audio_name already exists - please upload with a different name</span>";
} else if (ctype_alpha($category) === false) {
echo "<span class='error'>Category can only have letters (no spaces, commas, numbers, etc...)</span>";
} else if (ctype_alnum(substr($audio_name, 0, strpos($audio_name, '.'))) === false) {
echo "<span class='error'>Bad filename - $audio_name - can only contain letters and numbers (i.e. 'HowGreatThouArt.mp3')</span>";
} else {
if (move_uploaded_file($_FILES['audio_file']['tmp_name'], $uploadfile)) {
$queryInsertAudio = "insert into media (title, path, category ) values ('{$title}','{$audio_name}','{$category}')";
$result = mysql_query($queryInsertAudio);
if ($result) {
echo "<span class='success'>AUDIO $audio_name UPLOADED SUCCESSFULLY</span>";
} else {
echo "<span class='error'>FAILED TO INSERT RECORD FOR $audio_name - PLEASE CONTACT ADMINISTRATOR</span>";
}
} else {
echo "<span class='error'>FAILED TO UPLOAD AUDIO $audio_name - PLEASE CONTACT ADMINISTRATOR<br />" .
"ERROR CODE = " . $_FILES['audio_file']['error'] . "<br />" .
"Temp filename=" . $_FILES['audio_file']['tmp_name'] . "<br />" .
"Uploadfile=" . $uploadfile . "<br />" .
print_r($_FILES) .
"</span>";
}
}
}
move_uploaded_filereturn value isbooleanwhere you get that0? – Vytautas May 25 '12 at 13:20$_FILES['audio_file']['tmp_name']so I assume it exists... – Zack Macomber May 25 '12 at 13:24$_FILES['audio_file']['error']is the error code I'm referring to – Zack Macomber May 25 '12 at 13:250means no error upload was successful php.net/manual/en/features.file-upload.errors.php – Vytautas May 25 '12 at 13:33