Increasing the maximum post size

后端 未结 9 2094
旧巷少年郎
旧巷少年郎 2020-11-22 04:39

There is a lot of data being submitted no file uploads and the $_SERVER[\'CONTENT_LENGTH\'] is being exceeded. Can this be increased?

9条回答
  •  遇见更好的自我
    2020-11-22 05:26

    We can Increasing the maximum limit using .htaccess file.

    php_value session.gc_maxlifetime 10800
    php_value max_input_time         10800
    php_value max_execution_time     10800
    php_value upload_max_filesize    110M
    php_value post_max_size          120M
    

    If sometimes other way are not working, this way is working perfect.

提交回复
热议问题