When i upload my Httacces I get 500 Error

I am guessing you tried to add the suhosin stuff to your .htaccess file. The documented recommendation is a bit confusing because some of it refers to the .htaccess file and some refers to the Apache conf file. You may have mixed them up. Also, the suhosin stuff needs to go to the top of the .htaccess file.

You should have added :

Code:
php_value suhosin.request.max_vars 2048
php_value suhosin.post.max_vars 2048

If this is what you used and got the Server Error 500, not all hosts allow php_flag or php_value in .htaccess files, you may need to add them to a php.ini file in your public_html/root folder if your on a vhost server and not a vps or dedicated server. You should check with your ISP about it.
 
Back
Top