PHP not uploading file over 55 kb
问题 Files more than 50 KB are not uploading. I have checked php.ini and i have following values post_max_size = 16M (which i have increased from 3 MB but still no luck) upload_max_filesize = 64M max_file_uploads = 20 I've tried and read everything, couldn't find a solution, if anyone has gone thru the same problem, please share your experience. PHP: if(isset($_FILES["file"])) { if($_FILES["file"]["error"] == 0) { $uploaded_file_name = $_FILES["file"]["name"]; move_uploaded_file($_FILES["file"][