Reputation: 3611
i have working codes from my server which is really working using Xampp server but when i uploaded it to my hosting site, it seems the whole uploading isn't working.. what is missing? the temp folder? do i need to make a temp folder to my hosting site?
Upvotes: 0
Views: 241
Reputation: 382626
Make sure for:
enctype
in form
attributeUpdate:
The enctype
should be set to enctype="multipart/form-data"
eg:
<form enctype="multipart/form-data">
And you can turn on error reporting by putting these lines on top of your script:
ini_set('display_erros', true);
error_reporting(E_ALL);
Additionally try to see what does $_FILES
array contain after form is submitted:
echo '<pre>';
print_r($_FILES);
echo '</pre>';
Upvotes: 1
Reputation: 3219
Check two things :
Upvotes: 0
Reputation: 7564
I am sure you have not settup the permission for your upload path. Check the permission for upload path. First try by making the permission to world write format (777).
Upvotes: 1