Converting standalone bbpress 1.0.3 to 2.x
-
Hi,
I’ve been trying to convert a standalone version of bbpress (1.0.3) to the newest version (2.1.2) with the import tool. I’ve filled in all the correct login/db info, but it isnt importing anything.
Look at this for instance:
SELECT convert(topics.topic_id USING "utf8") AS topic_id,convert(topics.topic_posts USING "utf8") AS topic_posts,convert(topics.forum_id USING "utf8") AS forum_id,convert(topics.topic_poster USING "utf8") AS topic_poster,convert(topics.topic_title USING "utf8") AS topic_title,convert(posts.post_text USING "utf8") AS post_text,convert(posts.post_status USING "utf8") AS post_status,convert(posts.poster_ip USING "utf8") AS poster_ip,convert(topics.topic_start_time USING "utf8") AS topic_start_time,convert(topics.topic_time USING "utf8") AS topic_time FROM bb_topics AS topics INNER JOIN bb_posts AS posts USING (topic_id) WHERE posts.post_position IN (0,1) LIMIT 0, 100
No topics to convert
It uses the correct table prefix:
FROM bb_topics
But no importing. What is going wrong?
Any help is greatly appreciated!
- You must be logged in to reply to this topic.