Increasing the maximum post size

后端 未结 9 2110
旧巷少年郎
旧巷少年郎 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:27

    I had been facing similar problem in downloading big files this works fine for me now:

    safe_mode = off
    max_input_time = 9000
    memory_limit = 1073741824
    post_max_size = 1073741824
    file_uploads = On
    upload_max_filesize = 1073741824
    max_file_uploads = 100
    allow_url_fopen = On
    

    Hope this helps.

提交回复
热议问题