Hey,
I just downloaded the SMF WP-Bridge from here:
https://github.com/SimpleMachines/bridges
Earlier it was working from me.
But now when I'm going to users role setup I see the error:
QuoteTable 'dbex_forum.wp_options' doesn't exist
File: pathtomyforum/Sources/WordpressBridge.php
Line: 619
I see that the database name is wrong, it should be dbex_wordpress, not dbex_forum...
The username is the same.
Content of the file on line 619:
// Get the WP roles
$request = $smcFunc['db_query']('', '
SELECT option_value
FROM {raw:wp_prefix}options
WHERE option_name LIKE {string:wp_roles}',
array(
'wp_prefix' => $this->db_prefix,
'wp_roles' => 'wp_user_roles',
),
$this->db_connection);
list($wp_roles) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
$context['wpRoles'] = unserialize($wp_roles);
In packages this modifications is called as "BlogBridger" and working with emulation of SMF 2.0 RC5.