Increase max_execution_time in PHP?

后端 未结 4 1684
长发绾君心
长发绾君心 2020-11-27 17:25

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

4条回答
  •  难免孤独
    2020-11-27 17:50

    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
    

提交回复
热议问题