Edit main css prob!

lilfabbro

New Member
EVERTIME I TRY TO EDIT MY MAIN CSS I GET AN ERROR ALL IM TRYING TO DO IS CHANGE COLORS

THE ERROR IS:

Code:
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

IM NOT DOING ANYTHING BUT EDITING COLORS WHAT WRONG?

WELL IT TELLS ME WHATS WRONG BUT HOW CAN I FIX IT, CAN SUMONE WALK ME THROUGH IT, SCREENIES IF POSSIBLE PLZ
 
THATS SUHOSIN PROTECTION FROM YOUR HOST YOU CAN TRY THIS BUT IF NOT WORK U ASK YOUR HOST TO DISABLE THE SUHOSIN OR EDIT THE SUHOSIN VALUE TO ALLOWED VBULLETIN SET TO 2048

FOLLOW THIS
1. OPEN NOTEPAD AN PUT THIS
php_value suhosin.post.max_vars 2048
php_value suhosin.request.max_vars 2048

SAVE THE FILE WITH NAME php.ini and upload to your root directory

2. put again in your .htaccess at TOP this value
php_value suhosin.post.max_vars 2048
php_value suhosin.request.max_vars 2048

and save

this action work for me i don't know with your host but you can try

okey enjoy
 
if what suggested above didn't work then you need to ask your host to increase the values of the suhosin variables ¬¬ i hate that fu....thingy is a pain in the ass
 
virus said:
THATS SUHOSIN PROTECTION FROM YOUR HOST YOU CAN TRY THIS BUT IF NOT WORK U ASK YOUR HOST TO DISABLE THE SUHOSIN OR EDIT THE SUHOSIN VALUE TO ALLOWED VBULLETIN SET TO 2048

FOLLOW THIS
1. OPEN NOTEPAD AN PUT THIS
php_value suhosin.post.max_vars 2048
php_value suhosin.request.max_vars 2048

SAVE THE FILE WITH NAME php.ini and upload to your root directory

2. put again in your .htaccess at TOP this value
php_value suhosin.post.max_vars 2048
php_value suhosin.request.max_vars 2048

and save

this action work for me i don't know with your host but you can try

okey enjoy


thanks this works :thumbsup:
 
WTF? This piece of crap is all over the place ... Nobody searches before the post I guess...

run View PHP Info in admncp/maintenance to see if your server is running suhosin. If it is which given the message is likely, you need to contact your host provider and tell them you have a problem with it.

Alternatively, you can add the following lines to top of your .htaccess file to try to make it work (this is what Jelsoft recommends on their support site):

suhosin.cookie.encrypt = Off
suhosin.memory_limit = 32M
suhosin.session.encrypt = Off
suhosin.log.sapi = 511
suhosin.get.max_value_length = 1024
suhosin.request.max_vars = 2048
suhosin.post.max_vars = 2048
suhosin.executor.eval.blacklist = "exec,system,passthru,shell_exec,fopen,file_get_contents,file_put_contents,tmpnam"


The other option is to find a better hosting provider who is more friendly to your needs than theirs...
 
Back
Top