Dear friends, I needed a php jquery file upload system with progress bar. So I google and found the following simple script. The script working with image upload &I need to upload video file (flv, mp4 etc. that this 20+ MB) too. But it can't upload video file. http://www.w3bees.com/2013/10/file-upload-with-progress-bar.html Would you please review the script? * I tried adding with 'mp4' extention in upload.php file and increased max size. but not working. Thanks
You need to change the following settings in your php.ini: upload_max_filesize = and post_max_size = Set them to something you're comfortable with, and a little beyond the max filesize you want to accept. Say 30M (30 Megabytes) Then, adjust the setting in upload.php as well, to be a little less than what you've set your maximum to be in php.ini. Add the extensions you want (avi, mp4, wmv) etc. in upload.php, and it should be working perfectly.
Dear @PoPSiCLe , thanks for you suggestion. It works. I already increased "upload_max_filesize =" but I didn't increase "post_max_size =" . Now I increased that too and it works.
Good you got it to work. Now, if you please could mark my answer as the solution to your question, that would be nice