• I just updated to WP v3.2 and can no longer update feeds using FeedWordpress. I get the following message.

    Fatal error: Call to undefined method WP_SimplePie_File::WP_SimplePie_File() in /home/content/26/7172826/html/wp-content/plugins/feedwordpress/feedwordpress.php on line 1841

    An update to the plugin might be necessary.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Search line 1841

    WP_SimplePie_File::WP_SimplePie_File($url, $timeout, $redirects, $headers, $useragent, $force_fsockopen);

    and put this

    parent::__construct($url, $timeout, $redirects, $headers, $useragent, $force_fsockopen);

    Work on http://semprebenfica.net/

    Ups… i forgot!

    Edit file feedwordpress.php in feedwordpress plugin folder.

    😉

    Thread Starter eleek

    (@eleek)

    That appears to have worked. Thank you very much for the help!

    thanks, works for me too!!

    you mean replace it?

    @catherinejonk91

    Sorry, my English is a little weak! 😉

    Open feedwordpress.php (feedwordpress folder), sarch line 1841 – look for the following code:

    WP_SimplePie_File::WP_SimplePie_File($url, $timeout, $redirects, $headers, $useragent, $force_fsockopen);

    replace the above code with this:

    parent::__construct($url, $timeout, $redirects, $headers, $useragent, $force_fsockopen);

    That’s it! How it works. 😉

    I’m not getting RSS to validate either, wp-feed.php (fresh install today) has:

    <?php
    /**
    * Redirects to the default feed
    * This file is deprecated and only exists for backwards compatibility
    *
    * @package WordPress
    */

    require( ‘./wp-load.php’ );
    wp_redirect( get_bloginfo( get_default_feed() . ‘_url’ ), 301 );
    exit;
    ?>

    Is there something I can do to make it work? Using WP 3.2

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Cannot get RSS feeds after updating to 3.2’ is closed to new replies.