configuration - What is the max size of a single POST variable in PHP? -


is there way in php set max size of single post variable (not whole post size post_max_size)?

edit: looking way limit size of single post param, not whole post. seems can't in php , have use post_max_size (therefore set limit of whole post).

you need change php.ini file

post_max_size = 16m upload_max_filesize = 16m memory_limit = 128m 

change these value in php.ini if you've access it, otherwise can try change them in .htaccess file.

php_value upload_max_filesize 16m php_value post_max_size 16m  

this work if allowoverride settings permit it. otherwise, you've ask hosting company.


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -