Not signed in (Sign In)

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

    • CommentAuthorDanSexton
    • CommentTimeJul 27th 2007
     
    On a new install of Beta 3 I am having the following problem, everything works well unitl I get to the point of clicking on the largest image. The url parses like this:

    http://pics.notreal.com:75/index.phpimages/fmi/2007_chili_cookoff/100_2478.JPG

    whereas it should be:

    http://pics.notreal.com:75/images/fmi/2007_chili_cookoff/100_2478.JPG

    This is not a rights issue since if you change the link to the second one it displays fine. The problem is that it is still appending "index.php" to the end of the http link.

    I thought this might be an issue with the redirect to port 75 but I changed the setup without using the port redirect and the same thing happens.

    Anyone have any ideas?

    TIA
    • CommentAuthorDanSexton
    • CommentTimeJul 30th 2007
     
    Sorry to bump this but are there no knowledgeable posters that can add any insight to this? Maybe point me in the right direction?
    • CommentAuthorfly737
    • CommentTimeJul 30th 2007
     
    I had the same issue. Here is how I fixed it:

    Open "plog-functions.php" file in the root folder of plogger. In the "function plogger_get_source_picture_url()" function,

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

    WITH return (!empty($config['allow_fullpic'])) ? 'images/'.SmartStripSlashes($GLOBALS["current_picture"]["path"]) : "#";

    I just removed: $config["baseurl"]. I hope this helps.
    Thankful People: scotchsean
    • CommentAuthorDanSexton
    • CommentTimeJul 30th 2007
     
    Worked perfectly!

    Thank you for your help and time in posting this.
    • CommentAuthorscotchsean
    • CommentTimeAug 18th 2007
     
    You Rock!
    I lost a day messing with this. I thought thats where the problem lied, but did not think of just deleting it. I did have to add the full path plogger/images/ because I have a PHP file loading in my root which integrates my CSS.

    Thanks again!
    • CommentAuthorjammindice
    • CommentTimeSep 10th 2007
     
    Removing $config["baseurl"] worked for the above posters because they had their version setup differently.

    instead of removing $config["baseurl"] replace it with $config["gallery_url"] and it will fix your problem.