to make it work for vb 3.6.* - 3.6.4 and PhotoPost vBGallery v2.1
you just need only to change the xml file
line 41 was
Code:
$globaltemplates = array_merge($globaltemplates, array('adv_gallery_imagebit','forumdisplay_vbgallery',));
change line 41 to
Code:
$globaltemplates = array_merge($globaltemplates, array('ppgal_imagebit','forumdisplay_vbgallery',));
line 170 was
Code:
FROM " . TABLE_PREFIX . "adv_gallery_images AS images
Change line 170 to
Code:
FROM " . TABLE_PREFIX . "ppgal_images AS images
do not upload the file
functions_gallery_store.php as vbgallery already has this file in there in the version 2.1
just follow the org. directions omitting the
functions_gallery_store.php upload
Delw