Search Results for '\"wordpress\'
-
Search Results
-
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?

.