Hi,
I had a solution for this in WP 2.8.4 time. Don't if that same would work for you. I had to edit the wp-admin/import/import.php file.
I removed the if
if ( $post_exists ) {
echo '<li>';
printf(__('Post <em>%s</em> already exists.'), stripslashes($post_title));
$comment_post_ID = $post_id = $post_exists;
} else {
And then inserted the below code at the printf(__('Importing post....
Also rememember to remove the closing tag for the first if statement (II one after wp_set_post_tags($post_id, $post_tags);
// changed code here for if stmt
if ( $post_exists ) {
$ID = $post_ID;
$postdata = compact('ID', 'post_content', 'post_title', 'post_category', 'post_status', 'post_excerpt', 'comment_status', 'ping_status', 'post_date', 'post_date_gmt', 'to_ping', 'post_name', 'post_password', 'post_parent', 'menu_order', 'post_author', 'tags_input', 'page_template');
$comment_post_ID = $post_id = wp_update_post($postdata);
printf(__(' and updated'));
} else {
$comment_post_ID = $post_id = wp_insert_post($postdata);
printf(__(' and created new Post/Page'));
}
}
Let me know if you need more help.