Not signed in (Sign In)

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

Please sign in or apply for membership to remove the ads
  1.  
    When one drills down and clicks on the final picture I get a 404 error and this is the url

    http://domain.com/photogallery.phpimages/alex_bay/pirate_day/pirate_day_4.jpg

    and I presume it should be domain.com/plogger/images/alex_bay....

    I am integrating plogger using include php functions and <?php the_gallery(); ?>

    Why is the path to the file wrong now??
    • CommentAuthorgaladan
    • CommentTimeMay 2nd 2008 edited
     
    I'm getting a very similar error. I'm customizing my install as well, and for some reason the script is interjecting "index.php" in the generated URL.

    /intranet/gallery/index.phpimages/08_product_line/rugged_life/mz-133_woodsman_blackmocha.jpg

    It should be:
    /intranet/gallery/images/08_product_line/rugged_life/mz-133_woodsman_blackmocha.jpg

    Anyone have any ideas?
  2.  
    I changed the following method in plog-functions.php:

    function plogger_get_source_picture_url() {
    global $config;
    return (!empty($config['allow_fullpic'])) ? $config['gallery_url'].'images/'.SmartStripSlashes($GLOBALS["current_picture"]["path"]) : "#";
    }

    and mine now works - hope that helps.

    Mark
    Thankful People: Drakkim
    • CommentAuthorgaladan
    • CommentTimeMay 2nd 2008
     
    I'll give that a try, Mark. Thanks very much!
    • CommentAuthorgaladan
    • CommentTimeMay 2nd 2008
     
    Just tried it...works great. Thanks again.
  3.  
    version 3.0 beta has wierd URLS when you click on the picture.
    http://www.hackettsonline.com/gallery.phpimages/gallery_1/gallery/0011.jpg
    why is this still in the code?
  4.  
    the fix mentioned above DOES NOT work with this version 3.0 beta
  5.  
    wrong function.
    I changed the correct fucntion to

    return (!empty($config['allow_fullpic'])) ? $config['gallery_url'].'images/'.SmartStripSlashes($GLOBALS["current_picture"]["path"]) : "#";
    and it did work..