Import instructions and two questions at the end.
I did get the import to work, and it didnt take to much work. You need to modify two files.
This was a lot easier then another method, I have imported one user through this method, and I have imported another blog by importing the tables directly into the db.
1) First, you will need to open: / wp-inst / wp-admin / import / rss.php
(this file tells the rss import script where to get the goods you want to import, you just need to point it in the right direction)
At the top look for
// Example:
// define('RSSFILE', '/home/example/public_html/rss.xml');
define('RSSFILE', 'rss.xml');
and you will need to make a change similar to this
// Example:
// define('RSSFILE', '/home/example/public_html/rss.xml');
define('RSSFILE', 'http://www.domain.com/blog/feed/');
2) Also in this same file, look for this near the bottom,
if (!file(RSSFILE))
die("The file you specified does not seem to exist. Please check the path you've given.");
and change it to this
if (!fopen(RSSFILE,'r'))
die("The file you specified does not seem to exist. Please check the path you've given.");
Save and close this file.
3) open: / wp-inst / wp-admin / admin.php
find this line, (should be around line 11)
auth_redirect();
Comment it out like so
//auth_redirect();
Save and close file.
4) Login as the user you need to import (not as admin or anything else)
click on the import tab,
the choose RSS,
then choose "Begin RSS Import"
the you get "All done. Have fun!" which links to the main page of the blog.
5) go back to
admin.php and uncomment
//auth_redirect();
and go back to rss.php and un-point this
define('RSSFILE', 'http://www.domain.com/blog/feed/');
Leave the other change you made as is, or until someone who is in the know tells us otherwise.
Then you are all good to go.
A couple of things about using the import, maybe somebody more in the know can help
1. I cannot get it to import the comments (I tried to import comments seperatley but it imported them as posts, not as comments)
2. it does not get all of the posts (most of them but not all)
I dont know why on both accounts.