Magento-Compatible Suhosin Configuration
Table of Contents
Below are the known configuration variables that should be looked at for your PHP configuration. These items can be flagged in either the user’s .htaccess or php.ini file, or the master php.ini file.
php.ini |
suhosin.mail.protect = 0 suhosin.memory_limit = 128M suhosin.post.max_vars = 5000 suhosin.post.max_value_length = 500000 suhosin.request.max_vars = 5000 suhosin.request.max_value_length = 500000 suhosin.session.cryptua = Off
.htaccess |
php_value suhosin.mail.protect 0 php_value suhosin.memory_limit 128M php_value suhosin.post.max_vars 5000 php_value suhosin.post.max_value_length 500000 php_value suhosin.request.max_vars 5000 php_value suhosin.request.max_value_length 500000 php_flag suhosin.session.cryptua off


