When I post a large article to my web site it fails. How can I fix that?
Our servers have a default limit of 65K for any information submitted using a PHP script.
If you need to increase that limit, you will first need to create a custom php.ini file (if you haven't already).
Then add the following lines:
suhosin.post.max_value_length = 100000 suhosin.request.max_value_length = 100000
The example above increases the max length from 65000 (65K) to 100000 (100K).
Last modified
13 years ago
Last modified on Feb 3, 2013, 12:06:23 AM
Note:
See TracWiki
for help on using the wiki.