Not signed in (Sign In)

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

    • CommentAuthorTextronics
    • CommentTimeDec 21st 2005
     
    Can a guru goto my plogger click on rss and tell me what is wrong please?

    http://www.clairebaluci.com/gallery
    • CommentAuthorTextronics
    • CommentTimeDec 21st 2005
     
    can somebody please help me with this problem .......
    •  
      CommentAuthormike
    • CommentTimeDec 21st 2005
     
    The page cannot be found
  1.  
    sorry .. had a few problems ... up and running again but big problem with thr rss feeds. Sorry for the inconvenience. Please could you check again? !
  2.  
    ok ... rss working on all pages except the catalouge page. Is there a way to remove it just from this page or can someone please tell me what the fix is?
    • CommentAuthormcschulz
    • CommentTimeJan 11th 2006
     
    usually Firefox displays that little RSS symbol in the bottom right corner but when loading Plogger there's no such RSS symbol.
    Also the generated RSS feed, when clicking on the blue button within Plogger doesn't work for Firefox.

    Is this a special kind of maybe more advanced RSS not beeing supported by Firefox?
    • CommentAuthorsolemnchaos
    • CommentTimeJan 11th 2006 edited
     
    firefox uses "live bookmarks" (rss button) for rss feeds, but plogger doesn't yet have the code to enable them.

    If you want a partial solution, in gallery.php change lines 12-15 to this:
    ----------------------------------
    if ($config["use_mod_rewrite"]) {
    global $path;
    if (isset($path))
    $rss_link .= "http://".$_SERVER["SERVER_NAME"]."/".SmartStripSlashes(substr($path,1))."/feed/";
    else
    $rss_link .= $config['baseurl']."feed/";

    } else {
    $rss_link .= "plog-rss.php?level=$level&id=$id";
    };

    $inHead = <<<EOT
    <link rel="stylesheet" type="text/css" href="${baseurl}css/gallery.css" />
    <link rel="alternate" type="application/rss+xml" href="$rss_link" title="RSS feed" />
    <script type="text/javascript" src="${baseurl}dynamics.js"></script>
    EOT;
    -------------------------------
    this will enable live bookmarks for the gallery, collections, and albums. it does not work for searches (defaults to entire gallery), and still displays the button on individual images (and defaults the feed to the entire gallery).

    with a little more code it should be possible to get it working the same as plogger's in page rss button works. And remember that firefox 1.5 displays the button in the address bar rather than the bottom right corner.

    to see it working in my gallery:
    http://www.solemnchaos.com/gallery/index.php
    • CommentAuthormcschulz
    • CommentTimeJan 11th 2006
     
    thanks :-) i'll try thatone!
    • CommentAuthorcudjoe
    • CommentTimeJan 16th 2006
     
    I found a solution :
    add the following line :

    if ( $level == "collections" ) $level = "";

    just before

    if ($level != "")
    $rss_tooltip = "RSS 2.0 subscribe to this $level";

    in the file gallery.php