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
Post a Comment