Hello;
Vbulletin 3.7.x and 3.8.x for
''Warning: explode() expects parameter 2 to be string, array given in [path]/profile.php(182) : eval()'d code on line 245''
error of the solution;
Admin Cp ► "Plug-in management" ► "Invitation User CP" (profile_start)
Look around line 245 of the code
Code:
$groups = explode(',',$vbulletin->options['invitation_allowed_usergroups']);
change this to:
Code:
$groups = $vbulletin->options['invitation_allowed_usergroups'];
Source Link: http://www.webmasterindexi.com/vbull...si-cozumu.html
good job...