Quote:
Originally Posted by DeeperImage
OKay all i did was run the queries in phpmyadmin and it works. I did not edit anything. I just went back into vbulletin options/vbgarage options and hit save and it works now.
|
If you are using vB 3.0.2 or later there is a conflict with vBgarage in the init.php file. You should edit it for vBgarage to use it's own unique mask to avoid conflicts.
In init.php find
PHP Code:
'canhaverepleft' => 8388608
Change it to...
PHP Code:
'canhaverepleft' => 8388608,
// START VBGARAGE HACK
'canvbgarage' => 16777216
// END VBGARAGE HACK
The code seems dynamic, but in the long run it will be easier to deal with future upgrades with these edits.