any body know about that ? plz help me

mobimano

New Member
when i insert some code in my main css so we face that error any body tell me how can i do solve it

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



plz tell me urgent how can i do solve it
 
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 line to your local php.ini file to try to make it work:

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