| 276 | === suhosin === |
| 277 | |
| 278 | Due to errors like this being sent out by logwatch: |
| 279 | |
| 280 | {{{ |
| 281 | Nov 29 20:16:54 quince suhosin[26422]: ALERT - configured POST variable limit exceeded - dropped variable '4[edit field_event_type]' (attacker 'XXX.XXX.XXX.XXX', file '/web/transitionnetwork.org/www/index.php') |
| 282 | }}} |
| 283 | |
| 284 | These variables were changed in /etc/php5/conf.d/suhosin.ini as per [http://simonlane.com/site/?q=node/13 this suggestion]: |
| 285 | |
| 286 | {{{ |
| 287 | ;suhosin.post.max_vars = 200 |
| 288 | suhosin.post.max_vars = 500 |
| 289 | |
| 290 | ;suhosin.request.max_vars = 200 |
| 291 | suhosin.request.max_vars = 500 |
| 292 | }}} |
| 293 | |
| 294 | |