Not signed in (Sign In)

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

    • CommentAuthorrunegang
    • CommentTimeDec 3rd 2007
     
    Hi! I've installed plogger, and now I've got a problem. When I click a image in the gallery to get it fullsize, I get this error:
    Not Found, The requested URL /plogger.phpimages/testbilder/testbilder/0903193708.JPG was not found on this server.

    I can see that it does not put an slash (/) after .php and I guess that's the reason. Where can I add that slash? I can't find any place to do that.
    •  
      CommentAuthorkent
    • CommentTimeDec 3rd 2007 edited
     
    ive had that to .. but i cant remeber how i fixed it :(

    is it the original , full size image ? or the middle image ?
    • CommentAuthorrunegang
    • CommentTimeDec 3rd 2007
     
    It's the orginal i want to view.
    •  
      CommentAuthorkent
    • CommentTimeDec 3rd 2007
     
    check your htaccess
    • CommentAuthorrunegang
    • CommentTimeDec 3rd 2007
     
    What shall I look for?
    •  
      CommentAuthorkimparsell
    • CommentTimeDec 6th 2007
     
    The solution to your problem can be found in this thread. Basically, you need to open plog-functions.php and look for the following:

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


    Change it to the following and it should solve your problem:

    function plogger_get_source_picture_url() {
    global $config;
    return (!empty($config['allow_fullpic'])) ? 'images/'.SmartStripSlashes($GLOBALS["current_picture"]["path"]) : "#";
    }
    • CommentAuthorrunegang
    • CommentTimeDec 8th 2007
     
    Thank you!

    That worked fine;)
  1.  
    Thanks for full image fix!
    Bob J