| 1 | = When I post a large article to my web site it fails. How can I fix that? = |
| 2 | |
| 3 | Our servers have a default limit of 65K for any information submitted using a PHP script. |
| 4 | |
| 5 | 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). |
| 6 | |
| 7 | Then add the following lines: |
| 8 | |
| 9 | {{{ |
| 10 | suhosin.post.max_value_length = 100000 |
| 11 | suhosin.request.max_value_length = 100000 |
| 12 | }}} |
| 13 | |
| 14 | The example above increases the max length from 65000 (65K) to 100000 (100K). |