Forum Replies Created
-
In reply to: bbPress menus not showing up in Dashboard…
thx Lynq
“Tools” -> “Forums” -> “Remap existing users to default forum roles”
helped 🙂In reply to: BBPress Dashboard disappear (only)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?” …In reply to: BBPress Dashboard disappear (only)the same here – Forum menu is disappeared …
In reply to: import untouched contenti understand that phpBB truncate those urls
the problem is – BBPRESS CANT SHOW THOSE URLS
WP CAN …
p.s. maybe we can talk in IRC ???
In reply to: import untouched contentcheck 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 reply to: import untouched contentin 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>
In reply to: import untouched contentalso 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/
In reply to: import untouched contenti updated my sample
see it here: http://paste.php.lv/082eff9d3001b4a10de96e5a0baed45a?lang=php
In reply to: import untouched contentIn reply to: import untouched contentthose 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
In reply to: import untouched contentIn reply to: bbp_new_converter cant connect to dbit 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 …
In reply to: bbp_new_converter cant connect to dbbb-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
In reply to: integrating BBpress as a WP pagevery basic plugin and uses iframes to provide access to bbPress: