Not signed in (Sign In)

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

  1.  
    Yo.

    I'm using this version of Plogger with built-in lightbox effect. http://www.innoshare.com/blog/item/plogger-with-lightbox
    Everything was working fine until I used my own index.php file to include my own website design. Initially the problem was the lightbox was creating a huuuge white box around my image file, way bigger than the browser, causing scollbars vertically and horizontally. I'd seen the lightbox effect working perfectly previously (after I installed plogger and before I created my own index.php) and so I knew it was my fault... I realised I'd left in some code from a previous page on my site where I've been using the standard lightbox effect outside of plogger:

    <script type="text/javascript" src="http://www.mediadisplays.tv/new/lightbox/js/prototype.js"></script>
    <script type="text/javascript" src="http://www.mediadisplays.tv/new/lightbox/js/scriptaculous.js?load=effects,builder"></script>
    <script type="text/javascript" src="http://www.mediadisplays.tv/new/lightbox/js/lightbox.js"></script>

    I assumed this code was conflicting with Ploggers own lightbox stuff and it was not neccesary for this page so I removed it completely. Weirdly, this has caused Ploggers lightbox to stop all together; clicking on an image thumbnail simply opens the .jpg in the browser.
    http://www.mediadisplays.tv/gallery/
    I can't begin to imagine why Plogger is suddenly dependant on code that had nothing to do with it....

    Thanks in advance for any help, I'm at a dead end myself.
  2.  
    I'm using a modified default theme and have the lightbox (I'm using slimbox btw) load in Wordpress and the integrated Plogger works like a charm. I also set the PLOGGER_EMBEDDED in my Wordpress config instead of the Plogger config. This way I can selectively use Plogger integrated and not integrated by checking the config['embedded'] setting in my theme files.
  3.  
    To clarify, only when config['embedded'] is not set I load the Lightbox styles etc in my Plogger theme.
  4.  
    Hi, thanks for replying to this although I have pretty much no idea what you're talking about! I'm sure it makes sense but I've finally revisited this today and I've fixed the problem.

    My own index.php page was missing this code

    <script type="text/javascript">
    // <![CDATA[
    var fileLoadingImage = "<?php echo THEME_URL ?>images/loading.gif";
    var fileBottomNavCloseImage = "<?php echo THEME_URL ?>images/closelabel.gif";
    // ]]>
    </script>

    from the original working version. i thought i'd post the solution here as i don't remember the instructions telling me to include this, just the <?php require("gallery.php"); ?>, <?php the_gallery_head(); ?> and <?php the_gallery(); ?>. So there we go.