Hey, i have a vBulletin forum and to edit my skin some varibles need changing on php.in on the server or i can't change the skin, which i need badly.
Error i get:
I have looked on Vbulletin forum and it says i need this done:
I have tryed the .htaccess and didnt work so i need it edited on the server.
Can this be done?
Because Vbulletin wont fully work for what i need it for.
Error i get:
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:
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
The most likely cause of this problem is the suhosin module in PHP. If so this can be fixed by editing the php.ini (requires root access to the server) or by via a .htaccess file with the following contents:
php_flag suhosin.cookie.encrypt Off
php_value suhosin.request.max_vars 2048
php_value suhosin.post.max_vars 2048
php_flag suhosin.cookie.encrypt Off
php_value suhosin.request.max_vars 2048
php_value suhosin.post.max_vars 2048
Can this be done?
Because Vbulletin wont fully work for what i need it for.
Comment