I\'m trying to upload large files to my server (my server support post_max_size 192mb and max_execution_time 600 sec). When I upload 100mb files ex
post_max_size
max_execution_time
For increasing execution time and file size, you need to mention below values in your .htaccess file. It will work.
php_value upload_max_filesize 80M php_value post_max_size 80M php_value max_input_time 18000 php_value max_execution_time 18000