• On the last weekend i upgraded to 2.0.7 from 2.0.4
    Now, the rss_fetch doesn’t work anymore, i don’t get a result
    Is this an already known bug…?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter henner

    (@henner)

    Now, i detected it is only not woring in the side bar.
    I have the follwoing code:
    $url = ‘<url of feed>’;
    $rss = fetch_rss($url);
    if ( $rss ) {
    $i = 0;
    echo ”

    • <h2>Deviantphoto</h2>”;
      echo ”
      “;
      foreach ($rss->items as $item) {
      $title = $item[title];
      $link = $item[link];
      $desc = $item[description];
      $desc = change_specialchars($desc);
      if($i < $count) {
      echo ”

    • $title
    • \n”;
      $i++;
      }
      }echo “

    </p>

    <br>”;
    }
    else {
    echo “An error occured! ” .
    “<br>Error Message: ” . magpie_error();
    }

    It is working in the dashboard but not in the sidebar.

    Can somebody help me?

    Did you ever get this working?

    It seems that rss_fetch stopped working for me when I moved from v2.1.2 to v2.2. I’ve been posting at https://www.ads-software.com/support/topic/122141 .

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘rss-fetch doesn’t work anymore after upgrade to 2.0.7’ is closed to new replies.