I have searched for two days and no answer to my issues has been found.
I have D 6.11 with BG 6.x-3.0 / LB2 6.x-1.9 / FCKeditor 6.x-1.3 / views 6.x-2.5
website is guidinglightapostolic.com/church
i added the [bg|church] on the page and the gallery of images does not appear. input set to "full html". Please, pretty please provide guidance on getting the images to display.
the BG path to the main gallery folder is set to photos in the sites/default/files dir.
I have it running in drupal 5.7 at http://teachemyoung.com/hm/leaguephotos this works like a charm.
Thanks
Griff
Comments
Comment #1
scg3rd commentedOkay can someone please give me some kind of guidance with this issue. Is it a permission problem or path problem. I have tried for the last three days to figure this out with no success. I've put together a few drupal sites. So I am not trying to get someone to do my work for me. Again I've gotten this to work in Drupal 5.7 but can't in Drupal 6.x
www.asofmm.com
www.tfcninc.com
www.jandsnailacademy.com
www.thenetworkbuilders.biz
www.vmiinc.net
www.pmfinser.net
Comment #2
scg3rd commentedComment #3
scg3rd commentedOk I finally figured it out. I found a post that described my issues to a tee.
After ensuring that you follow the directions for setting up Brilliant Gallery and especially modifying the Input Format to recognize the brilliant gallery tag [bg|...] do the following to the image.php file located at
sites/all/modules/brilliant_gallery/image.php
Just uncomment: drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
and comment out: drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE);
inside the function drupalize() of image.php.
Goes from:
#module_load_include('/includes/bootstrap.inc', 'image', 'includes/bootstrap');
require_once './includes/bootstrap.inc';
#drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE);
#drupal_cron_run();
To:
#module_load_include('/includes/bootstrap.inc', 'image', 'includes/bootstrap');
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
#drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE);
#drupal_cron_run();
Got this solution from the following post: http://drupal.org/node/211378#comment-702364
Scroll down to reply #13 this answers replies #7 - #12