In my PHPmyadmin I am seeing a warning message about Suhosin being installed, how can I remove this or disable it?
Asked
Active
Viewed 1.3k times
2 Answers
4
Suhosin is a PHP extension designed to protect your PHP installation, if you really want to disable it:
Edit /etc/php5/apache2/php.ini
(as root) and add:
[suhosin]
suhosin.simulation = On
Then restart apache, sudo service apache2 restart

Octavian Helm
- 14,355

sergio91pt
- 2,942
-
2Doesn't work for recent packages anymore since suhosin is compiled in and not longer a module. Thanks Ubuntu !! – Dec 06 '11 at 10:40
-
1This one works on Ubuntu 12.04 server. I have tried it recently. Was scratching my head in bewilderment on why the form can't go beyond 25 file uploads, and I know I set to max at 30 under php.ini. In the end, it was this patch that was the culprit. Adding the above under php.ini solved it. Thank you for this tip! :) – Marky Jan 18 '13 at 14:02
-
Could not disable it by those instructions with Ubuntu 12.04.4. – cavila Sep 15 '14 at 18:24