[[TranslatedPages]] = 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 [wiki:change_php_ini_settings 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).