What is the size limit of a post request?

后端 未结 9 1455
悲&欢浪女
悲&欢浪女 2020-11-22 02:25

Sorry if this is duplicate,I would think it would be but couldn\'t find anything.

I have a flex application that I am posting data back to a php/mysql server via IE.

9条回答
  •  忘掉有多难
    2020-11-22 03:02

    It depends on a server configuration. If you're working with PHP under Linux or similar, you can control it using .htaccess configuration file, like so:

    #set max post size
    php_value post_max_size 20M
    

    And, yes, I can personally attest to the fact that this works :)

    If you're using IIS, I don't have any idea how you'd set this particular value.

提交回复
热议问题