Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorNotalesS
    • CommentTimeJan 4th 2007
     
    So i'm helping my friend design his small automotive shop site, and i was integrating plogger to one of his pages. Everything seems to work just fine BUT the images do not show.

    www.theshop-sanbruno.com/gallery_pics

    the plogger install is in /gallery

    The PHP is

    <?php include("../gallery/gallery.php"); ?> (top of page)

    <?php the_gallery_head(); ?> ( in head section)

    <?php the_gallery(); ?> ( in content wrapper)
    • CommentAuthorjmetcalf
    • CommentTimeJan 4th 2007
     
    After briefly looking at your site, it appears that you have a permission problem. Perhaps you have an .htaccess file miss configured?
    • CommentAuthorradex7
    • CommentTimeJan 4th 2007
     
    Hi, I just started using plogger myself and I was able to integrate it without a hassle. I checked your site and when I checked url's of your images they point to:
    http://www.theshop-sanbruno.com/gallery_pics/index.php?level=album&id=3

    shouldn't they be pointing to your plogger location? Now try this:

    http://www.theshop-sanbruno.com/gallery/index.php?level=album&id=3

    Your gallery is installed properly. But the links between the page and gallery are messed up. I just played with your html in firefox and when you change every gallery_pics to gallery in your <div id="wrapper"> you will get your images and links in place. But sadly, this is not exactly integrating because links will take you to default plogger gallery.php page, and I am assuming that you want to display it whithin the page itself.

    I would consider wiping the <div id="wrapper"> (this is where you want your pictures to show, right?) and put the <?php the_gallery(); ?>

    part there instead (don't forget about two other snippets in their proper locations: first line: <?php include("gallery.php"); ?>
    and head: <?php the_gallery_head(); ?>

    See what happens.