Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does image upload fail php's is_uploaded_file check?

I have a html form that allows image uploads, but the image uploaded now fails the "is_uploaded_file" check for some reason.

So why does the upload fail the is_uploaded_file check?

HTML:

<form enctype="multipart/form-data" id="RecipeAddForm" method="post"
action="/recipes/add" accept-charset="utf-8">
    <!--- Omitted Markup -->
    <input type="file" name="data[Recipe][image]" value="" id="RecipeImage" />
    <!--- Omitted Markup -->
</form>

PHP:

// returns false
echo is_uploaded_file($file['tmp_name'])?'true':'false'; 

I did a dump on the $file or $_FILES array:

Array
(
    [name] => add or remove.jpg
    [type] => image/jpeg
    [tmp_name] => E:\\xampp\\tmp\\phpB9CB.tmp
    [error] => 0
    [size] => 71869
)

File size is not too large, and the error was 0. So why does it fail the is_uploaded_file check?

like image 493
Razor Storm Avatar asked Feb 25 '23 21:02

Razor Storm


1 Answers

Might be a problem with windows, since it's case sensitive and will not match if the path is different. Try using realpath($file['tmp_name'])

like image 75
yoda Avatar answered Mar 07 '23 05:03

yoda