I have an application where I am showing progress bar using uploadprogress_get_info It was working fine few days back but suddenly the progress bar is not showing . It is always returning null. Pls guide on how I can resolve this error. I have set the below in the file... ini_set('max_input_time', 6000); ini_set('max_execution_time', 6000); ini_set('memory_limit','1200M'); set_time_limit(6000);
See https://bugs.php.net/bug.php?id=57728 Probably the most likely problem is you are uploading a file larger than upload_max_filesize ini variable. But it could be a Suhosin extension, PHP or the uploadprogress extension. Uploading all of them to the latest version will likely fix the problem.