Quote:
Originally Posted by MotoUp
Well, I tried removing 2.5 and installing 2.6. Now, instead of it just not showing up, my CMPS won't even load....My users already miss this module a lot. Is there anything else you can think of that I can try?
I am using vB 3.6.8, and vBGallery 2.0. Any ideas?
|
In vBGallery 2.2 this was changed I see your @ 2.0
=======================================
Try this.
forums\modules\vbgallery.php
Find:
Code:
$categorycache =& $vbulletin->gallery_c_cache;
$galleryoptions =& $vbulletin->adv_gallery_opt;
$gallery_permissions =& $vbulletin->gallery_ugroups;
Change To:
Code:
$categorycache = unserialize($vbulletin->gallery_c_cache);
$galleryoptions = unserialize($vbulletin->adv_gallery_opt);
$gallery_permissions = unserialize($vbulletin->gallery_ugroups);