The MU forums have moved to WordPress.org

Import Working (5 posts)

  1. hbarquero
    Member
    Posted 18 years ago #

    Sory if I write something wrong, I'm from Portugal, and I dont have much experience writing in English.

    So here it is

    After a few days looking arround all the information about the function Import, I finaly found the SIMPLE Solution to the problem.

    on - wp-admin/wp-settings.php - arround line 302 we have:

    if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) :
    // Used to guarantee unique hash cookies
    $cookiehash = ''; // Remove in 1.4
    define('COOKIEHASH', '');
    endif;

    So the only thing to do is remove this code on the 1st line:
    && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')

    So it will look like this:

    if (!strstr($_SERVER['PHP_SELF'], 'install.php')):
    // Used to guarantee unique hash cookies
    $cookiehash = ''; // Remove in 1.4
    define('COOKIEHASH', '');
    endif;

    For me is working very well.

  2. andrewbillits
    Member
    Posted 18 years ago #

    Actually, I believe imports were fixed about a month or so ago. Try upgrading to the newest nightly. :)

  3. hbarquero
    Member
    Posted 18 years ago #

    Thank's

    I'm new here and I have made de download a few days ago. And I was having this problem, that was, When I click on the import, simple the page was not opening. So After loking all the information I get to this simple Line chage and now is working fine.
    I'm going to check if I'm using the lastest verson, ;)

  4. samchng
    Member
    Posted 18 years ago #

    I experienced the same problem. I couldn't import and i am using the 280306 build. Everything was all right after the above change by hbarquero.

  5. zigx
    Member
    Posted 18 years ago #

    i am still seeing problems on the build i downloaded today.

    Anyone else?!?!??!

About this Topic