Forum Replies Created

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.

    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.

Viewing 2 replies - 1 through 2 (of 2 total)