PHP error

The Curut

New Member
I can,t Edite The CSS N style

vBulletin Message

Required variables have gone missing and execution can not continue. Please try again.

This error can sometimes occur as a result of Suhosin / Hardened PHP being installed on your server. If you know that you have Suhosin running and you have access to the PHP configuration, try increasing the value of the following variables:

* php_value suhosin.post.max_vars
* php_value suhosin.request.max_vars


Plese Help Me guys...
 

bluescorpion

New Member
First thing you have to do is run phpinfo.php to see if in fact you are running Suhosin. Very likely you are. You can add those commands to your .htaccess or try to get your host to fix the problem for you. It definitely sucks. I got that shit and complained to my host. They actually turned it off for me.

Make sure you are running it first thing!
 

bluescorpion

New Member
If you are running suhosin, vbulletin recommend adding this to the top of you .htaccess file:

Code:
php_flag suhosin.cookie.encrypt Off
php_value suhosin.request.max_vars 2048
php_value suhosin.post.max_vars 2048
 
Top