Search Results for '"wordpress"'
-
Search Results
-
Hi everyone, I’ve just had one hell of a night trying to figure out this bbP/wP integration stuff. Eventually, I thought I’d do a clean test install and work from there to see if I could isolate the issue, so I installed:
BBpress 0.7.3
WordPress 2.0.5
on
Apache 2.0.59
mySQL 5.0.19
PHP 4.4.4
via MAMP on Mac OS 10.4.8
with WP in root and BBpress as subdirectory “discussions”.
I then configured wp-config.php and config.php like so:
<?phpdefine('DB_NAME', 'database');
define('DB_USER', 'root');
define('DB_PASSWORD', 'root');
define('DB_HOST', 'localhost:8889');
$table_prefix = 'wp_';
define ('WPLANG', '');
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
and
<?phprequire_once(dirname(dirname(__FILE__)) . '/wp-config.php');
define('BBDB_NAME', 'database');
define('BBDB_USER', 'root');
define('BBDB_PASSWORD', 'root');
define('BBDB_HOST', 'localhost:8889');
$bb_table_prefix = 'bb_';
$bb->domain = 'http://192.168.0.149:8888';
$bb->path = '/discussions/';
$bb->name = 'the Forum';
$bb->admin_email = 'email@email.com';
$bb->mod_rewrite = false;
$bb->page_topics = 30;
$bb->edit_lock = 60;
$bb->gmt_offset = -8;
define('BBLANG', '');
$bb->akismet_key = '***********';
$bb->wp_table_prefix = 'wp_';
$bb->wp_home = 'http://192.168.0.149:8888';
$bb->wp_siteurl = 'http://192.168.0.149:8888';
define('BBPATH', dirname(__FILE__) . '/' );
require_once( BBPATH . 'bb-settings.php' );
?>
(the 8888/9 ports are MAMP defaults; 192.168.0.149 is the LAN IP of the computer I’m running this on)
Then I ran the install scripts, and lo and behold, everything seemed to be working great. Then I began to add plugins one by one, and, to make a long story short, found that:
Whenever the Sidebar Widgets plugin was activated along with a separate widget (including those included with it, del.icio.us and google, as well as akismet, which has a widget built-in), trying to load a BBpress page would yield a blank page. However, if Sidebar Widgets was activated but no widget plugins were, it would work fine–I could even use the integrated widgets (RSS, categories, calendar, etc) on the blog. Likewise, if Sidebar Widgets is deactivated, but all the widgets are activated, it still works fine.
Also: the Front Page Topics plug-in for bbPress, regardless of any other plugins in wP or bbP, yields a similar blank page on posting a new reply, starting a new topic, making a new forum, or logging out. If I go back and refresh, the topic/reply/forum HAS been created… but the logout attempt is UNsuccessful. Like I said, I tried this with no bb or wp plugins, as well as a variety of them, and its always the same result.
Ok, its 4:15 in the morning, I have class at 8 and I’m going to go pass out, but hopefully this is enough information for someone to tell me what gives…
Thanks for reading/any help.
-G
hi,everybody i install wordpress and bbpress successful
the next i want to do is make bbpress use the wordpress’s theme
first i edit config.php,
add:
require_once(‘/home/myusername/public_html/blog/wp-blog-header.php’);
define(‘WP_BB’, true);
for example
<?php
require_once(‘/home/myusername/public_html/blog/wp-blog-header.php’);
define(‘WP_BB’, true);
then , copy bb-templates/ directory to my-templates/
edit my-templates/header.php
add <?php get_header() ?> in it
my-templates/foot.php
add <?php get_foot() ?> in it
but the appear some mistake
the message :
Warning: main() [function.main]: open_basedir restriction in effect. File(/domains/chinalin.org/public_html/wordpress/wp-
blog-header.php) is not within the allowed path(s): (/home/kim/:/tmp:/var/www/:/usr/local/lib/php/:/etc/virtual/) in
/home/myusername/public_html/wordpress/bbpress/config.php on line 2
Warning: main(/domains/chinalin.org/public_html/wordpress/wp-blog-header.php) [function.main]: failed to open stream:
Operation not permitted in /home/myusername/public_html/wordpress/bbpress/config.php on line 2
Fatal error: main() [function.require]: Failed opening required ‘/domains/chinalin.org/public_html/wordpress/wp-blog-
header.php’ (include_path=’.:/usr/local/lib/php’) in /home/myusername/public_html/wordpress/bbpress/config.php on line 2
what else should i do ? please tell me the others setting .
sorry for my bad english
the wordpress is 2.0.5 ,bbpress is 0.73
My WPMU and BBpress setup is 99.99% complete. The *only* remaning issue is this:
Across all the blogs in my WPMU install I have a header that uses the following code to hook into every wordpress blog on my site:
add_action(‘wp_footer’, ‘wp_admin_bar’); /* part of hack to make this show at the top of each blog */
add_action(‘wp_head’,’wp_admin_bar_style’);
I need this header to show up at the top of my bbpress install without having to load wordpress on top of bbpress.
In short, I like my bbpress the way it looks on its own, I just want the header at the top. Is this possible?

.