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
    • CommentAuthorVSDan
    • CommentTimeOct 4th 2005
     
    During the Slideshow, when you click on the [View Large Image] "magnifying glass" icon or click on the thumbnail, the image is 404. Reason being that the JavaScript rendered url is incorrect. For example:

    http://www.example.com/artroom/icons/animals/cat.jpg

    ...but URL should be:

    http://www.example.com/artroom/images/icons/animals/cat.jpg

    Ideas?
    •  
      CommentAuthormike
    • CommentTimeOct 5th 2005
     
    This is a bug. I've fixed it in SVN, but for now you can fix it on your local copy by following the instructions below.

    Somewhere around line 1258 in gallery.php in the function generate_slideshow_js(), change the line of code:

    s.link = "'.$config["baseurl"] .$row["path"].'";

    to

    s.link = "'.$config["baseurl"] . "images/".$row["path"].'";

    Note that turning on the cruft-free URL option will make it work as well without modifying any code.
    • CommentAuthorsparked
    • CommentTimeJul 23rd 2008 edited
     
    Hello. The answer is located at: http://www.plogger.org/forum/discussion/1982/slideshow-javascript-hotlink-picture-enlargement-bug-in-plogger-beta-30/#Item_2