• liljoeyjordison

    (@liljoeyjordison)


    When i try and import anything (i’ve only tried importing from RSS) i get the following PHP error- and everything dies.


    Fatal error: Cannot redeclare class rss_import in /path/tp/wp-admin/import/rss.php on line 3

    It’s the latest version, i downloaded it about an hour ago

Viewing 2 replies - 1 through 2 (of 2 total)
  • I had the same problem with WordPress 2.0.2. As a matter of fact, all the import options gave a similar error.

    I modified wp-admin/admin.php.

    I only changed the following line (number 86):

    from:
    include(ABSPATH . “wp-admin/import/$importer.php”);

    to:
    include_once(ABSPATH . “wp-admin/import/$importer.php”);

    import worked fine after that.

    This solution worked for me!

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘RSS Import is broken’ is closed to new replies.