It looks like you used wp_forums_\
as the table prefix on the importer settings, as a quick guess I think it should be wp_
Edit: You can confirm what this value should be by opening the wp-config.php
file in the root of the WordPress install that has Mingle forums installed.
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
Hello Stephen,
Thank you so much for replying. I opened the wp-config.php and looked up the $table_prefix and it was ‘wp_’ so I tried to run the convert/import and it came up with this message:
Starting ConversionRepair any missing information: Continue
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘\”wp_\”forum_forums AS forum_forums LIMIT 0, 100’ at line 1]
SELECT convert(forum_forums.id USING “utf8”) AS id,convert(forum_forums.parent_id USING “utf8”) AS parent_id,convert(forum_forums.name USING “utf8”) AS name,convert(forum_forums.description USING “utf8”) AS description,convert(forum_forums.sort USING “utf8”) AS sort FROM \”wp_\”forum_forums AS forum_forums LIMIT 0, 100No forums to convert
I’m really not sure what to do here. Like I said I’m a SQL newbie so I really don’t understand much about it yet.
Thank you for your assistance so far,
Scott
Did you use single or double quotes around wp_
?
The error you show above showing the error as \”wp_\”forum_forums
is an odd one, if things were working correctly I would expect the error to look more like this wp_forum_forums
.
Open up your wp-config.php
file again:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'database_name_here');
/** MySQL database username */
define('DB_USER', 'username_here');
/** MySQL database password */
define('DB_PASSWORD', 'password_here');
/** MySQL hostname */
define('DB_HOST', 'localhost');
Make sure the values above are the ones you are using on the bbPress import settings and that you select Mingle
as the import type.
If you still have the same issue you might have to have a chat with your web host to see if there is some extra SQL settings needed by them.
Hi Stephen,
I tried it with both single and double quotes.
I opened the wp-config.php and copied the information directly from there. Still getting a similar issue. I’m going to contact bluehost and see what they have to say.
Thank you for all your assistance. Once I hear from bluehost I will update this thread with that information.
Scott
DO NOT USE ANY QUOTES, just use wp_