You are now logged out.
Forum Replies Created
-
thx Lynq
“Tools” -> “Forums” -> “Remap existing users to default forum roles”
helped
In the “Dashboard” i can see the “Forum dashboard”
But when i go to “/wp-admin/edit.php?post_type=forum” i got “Cheatin’ uh?” …the same here – Forum menu is disappeared …
i understand that phpBB truncate those urls
the problem is – BBPRESS CANT SHOW THOSE URLS
WP CAN …
p.s. maybe we can talk in IRC ???
check those two posts:
link in standart WP post: http://wordpress.versuspro.lv/uncategorized/test/
the same link in the forum: http://wordpress.versuspro.lv/forums/topic/test/
in example above, the problem is the DOTS.if we will remove those dots, parsing will be correct:
<a href="http://www.flickr.com/photos/29725651@N02/sets/72157630105769752/">http://www.flickr.com/photos/29725651@N105769752/</a>is parsed to:
<a href="http://www.flickr.com/photos/29725651@N02/sets/72157630105769752/">http://www.flickr.com/photos/29725651@N105769752/</a>also btw – in the bbpress is bug in link parsing:
link:
<a href="http://www.flickr.com/photos/29725651@N02/sets/72157630105769752/">http://www.flickr.com/photos/29725651@N ... 105769752/</a>is parsed to:
<a href="http://www.flickr.com/photos/29725651@N02/sets/72157630105769752/"></a><a href="http://www.flickr.com/photos/29725651@N">http://www.flickr.com/photos/29725651@N</a> … 105769752/i updated my sample
see it here: http://paste.php.lv/082eff9d3001b4a10de96e5a0baed45a?lang=php
those was RAW data from MYSQL DB …
i actually DON’T NEED to convert BBCodes – i need original post texts, and that is the problem, cause bbpress converter convert [quote] to DIV
temporary fix was – to get original text from the phpbb_posts table via wp_postmeta key _bbp_post_id
it must be fixed, but it seems it was not the problem, why old phpBB users cant log in with old passwords
with FRESH install all was fine …
bb-converter.php
this is wrong, it only works from admin, cause when user log in, $_POST array will not have information about DB:
$this->opdb = new wpdb( $_POST['_bbp_converter_db_user'], $_POST['_bbp_converter_db_pass'], $_POST['_bbp_converter_db_name'], $_POST['_bbp_converter_db_server'] );
$this->opdb->prefix = $_POST['_bbp_converter_db_prefix'];Guatam:
added in bb-config.php
require_once(dirname(__FILE__) . ‘/../wp-load.php’);
i commented those functions with #
other way to solve that problem is – instead of class_exists we must use function_exists to all functions, because those functions are not a class functions
very basic plugin and uses iframes to provide access to bbPress: