[HELP] php5 issue with vbulletin

Itsuki Minami

New Member
Well i have been stoped from uing vb, why? well i have read something about this and i have this prob:
When i edit All Style Options and put save i get this:

Code:
Warning: implode() [function.implode]: Bad arguments. in /admincp/css.php on line 103

 

    Rebuild Style Information

        Updating Style Information for '' and child styles...

            * ...
              Fatal error: Invalid styleid specified in /includes/adminfunctions_template.php on line 318

It only happens in All Style Options, is know issue in php5 with vbulletin, i try somethings but none work and my host refuse to change the values of the php module, i read somewhere it can be done with a .htacces but when i do the file i get a 500 internal server error, so i want to know if somene can help me here, i need to change this options so i can work in my template, anyway to fix this? maybe change a php file so vbulletin do less querys? or something, thanks in advance
 
it is not a php5 issue per se, but more a problem of your server being hardened with suhosin or any other hardening alternative

To resolve this, create a file called .htaccess and paste the following lines of code into it.
Code:
php_value suhosin.request.max_vars 1024
php_value suhosin.post.max_vars 1024
Then save it, and upload to your admincp directory.
Now try again. This should, if your hoster permits those changes via .htaccess, solve the problem in case your server uses suhosin :)
 
ya, i do is php5 and i make a ticket to the host and nothing they say they can't anyway to change the way vbuleting sends querys? or something xD or a free host with php4 xD
 
it´s not about the amount of queries vbulletin sends, it´s about the amount of variables that are send with the request. and as they aren´t high enough you can´t save all the edits

Change hoster, that one is crap ^^
 
Itsuki Minami said:
Well i have been stoped from uing vb, why? well i have read something about this and i have this prob:
When i edit All Style Options and put save i get this:

Code:
Warning: implode() [function.implode]: Bad arguments. in /admincp/css.php on line 103

 

    Rebuild Style Information

        Updating Style Information for '' and child styles...

            * ...
              Fatal error: Invalid styleid specified in /includes/adminfunctions_template.php on line 318

It only happens in All Style Options, is know issue in php5 with vbulletin, i try somethings but none work and my host refuse to change the values of the php module, i read somewhere it can be done with a .htacces but when i do the file i get a 500 internal server error, so i want to know if somene can help me here, i need to change this options so i can work in my template, anyway to fix this? maybe change a php file so vbulletin do less querys? or something, thanks in advance

some time ago i fixed that with the values in .htaccess, it´s your host
 
Back
Top