Import page finally working
Posted on March 10th, 2006 by admin
This is the changes that I did for it to work
In wp-settings.php:
Original code
if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) :
Just adding a ‘/’ at the end of import fixes it. So the final lines should look like
if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import/')) :
Filed under: WordPress