WP: 2.5.1 installed in root
bbpress: 0.9.0.2 installed in subfolder /bbpress
I got the admin integration working but ran into another problem:
In my wp-config.php i have the following lines:
require_once(ABSPATH.’wp-settings.php’);
require_once(ABSPATH.’bbpress/bb-config.php’)
In my bb-config.php i have:
require_once(‘/www/htdocs/v145881/wp-blog-header.php’);
define(‘WP_BB’, true);
When i create or edit an articel all external HTML-Links are stripped like:
<p style=”text-align: left;”><img src=”https://fraudoktor.de/images/start_big.jpg” alt=”” width=”432″ height=”236″ /></p>
after publishing will look like:
<p style=”\”><img src=”\” alt=”\"\"” width=”432″ height=”236″ /></p>
The SQL-Tables still contain the complete code.
When i disable the : require_once(ABSPATH.’bbpress/bb-config.php’) line in wp-config.php the article-aditor works fine but i get the:Fatal error: Class bb_walker_forumadminlistitems: Cannot inherit from undefined class bb_walker in /www/htdocs/v145881/bbpress/bb-admin/admin-functions.php on line 593 error upon access on bbpress menues in Admin-section
Any idea would be helpful – Thanks in advance