I just installed bbpress into a folder “bbpress” that is in the root of my site, which is essentially a WordPress site. It said that the installation when fine. I want to integrate it into WP but the bbpress installation instructions say that I need to go to the bbpress admin page in order to do this. This is where things go wrong. I can’t GET to the admin page. It keeps sending me back to the bbpress default page, a page of forums.
http://bbpress.org/plugins/topic/user-photo-for-bbpress/
Hi, I’m trying to display the avatar of the person who started the forum topic on the mainpage, in the place of the last posters name, in the latest discussions area.
I’ve tried using the way it displays in profiles
<?php if ( $avatar = bb_get_avatar( $member->ID ) ) : ?>
<div id=”useravatar”><?php echo $avatar; ?></div>
<?php unset($avatar); endif; ?>
It does not work. I’ve tried pulling it like in a post
<?php post_author_avatar_link(); ?>
Nothing. One more
<?php
if (function_exists(‘bb_get_photo’))
bb_get_photo($user->ID);
?>
No joy there either. I tried using this function
<img src=”<?php echo USERPHOTO_URL . $profileuser->userphoto_image_file . “?” . rand() ?>” alt=”<?php _e(“Full size image”, ‘user-photo’); ?>” />
and it almost does it…
http://localhost.wordpress.com/wp-content/uploads/userphoto/?29089
but as you can see it does not grab the users avatar, (1.jpg) although it’s pointing to the right place.
has anyone ever gotten avatars showing on the mainpage with the user photo plugin? I am aware other plugins exist for avatars but they do not suit my needs, apart from this one hickup, user photo is the best for wordpress/bbpress shared avatars. The guy who made it has long since left
Hello
title says it all, I created my forum and now I’d like it to show in one of the pages of my WordPress site. Is that possible?
thanks
vim
2) https://bbpress.org/forums/topic/heres-how-to-show-bbpress-info-inside-wordpress-without-full-integration
The first one is not avatars (those are for people) – you want topic icons, like gerikg linked you to.
Ah neat!
Adding stuff to the standard registration would probably mean the trick wouldn’t work for too long – Invisible Defender used a similar trick but eventually spammers updated their software to bypass the extra fields:
https://wordpress.org/extend/plugins/invisible-defender/
Would love to see this code as a plugin!!
I don’t know much about Pods, but how does this handle things like wordpress-bbpress integration? Is there user integration?
I have a long-standing habit of using subversion for WordPress and bbPress updates. There are some added features in the trunk that I like, but I wonder if it’s safe to update to the trunk at this point. A look at the tickets seems to indicate that it would be relatively ok.
Anyone have experiences using trunk?
I’m a big fan of fluid theme designs. People used to care about screens with different resolutions, but it seems like everyone has forgotten about their HTML design now. I guess the defaults with bbPress and WordPress don’t help the concept much.
What differance does it make i.e. integration with WordPress ??
Since there are very few reports of this, I think it is related to something in your setup. I can’t replicate the problem.
Did you integrate with WordPress or do anything other than just go through the installation procedure?
I guess this is part of the problem with not having an official theme repository. WordPress is finally getting the word out that downloading themes from other than the repository can get you a theme loaded with nasty stuff. bbPress may have to do the same thing.
MomD1rect
Just to be clear:
The integration is just so you can use the same user information on both sites.
The sites WordPress & bbPress will not look the same after you integrate it. It will look exactly how you had it before.
These instructions work for me, stop at Deep Integration: http://wpbbpthemes.org/integration/
Is there any support for newbies??? I have read the forum about some issues I’ve had in regards to installing this.. There are many solutions but no instructions on how to do it. It’s more like “This problem can be resolved by doing “X”. But there is no instructions on how to do “X”.
Are there any step-by-step instructions (manual) on how to use this with WordPress. I read the Installation page on here and I read the Integration with WordPress… but there are still no instructions. Any help would be appreciated.
Okay what I noticed is the only time you get ADMIN_COOKIE_PATH line is when your WP is in a folder:
site.com/folder/ wordpress and site.com/folder/forums bbpress.
then the result will be ADMIN_COOKIE_PATH is /folder as for an answer I still haven’t been able to try it to tell you.
Does it let you do a fresh install or does it say it found a bb-config file? buddypress creates one and put it in the wordpress folder. also check your htaccess file.
Plugin: I am looking for a way to protect forums by “role” which I define on the wordpress side. BY role, I mean non standard ones…I create custom roles that manage membership levels like Free, Bronze, Silver, Gold.
I want to be able to say:
Forum x: only show to Gold
ForumY: only show to Bronze, Silver, Gold
It would also be nice to be able to set rights like
-view only
vs view and post
hide completely (i.e. do not show forum)
BY forum, I mean parts (buckets of threads) of a global forum
/bb-includes/backpress/class.wp-http.php (bbPress 1.1-alpha revision 2412)
BBPRESS functions:
function &_wp_http_get_object() {
function wp_remote_request($url, $args = array()) {
function wp_remote_get($url, $args = array()) {
function wp_remote_post($url, $args = array()) {
function wp_remote_head($url, $args = array()) {
function wp_remote_retrieve_headers(&$response) {
function wp_remote_retrieve_header(&$response, $header) {
function wp_remote_retrieve_response_code(&$response) {
function wp_remote_retrieve_response_message(&$response) {
function wp_remote_retrieve_body(&$response) {
conflict with WORDPRESS (WordPress 3.0-alpha revision 13909) /wp-includes/http.php the same functions
from SAM
“A first attempt at getting WordPress 2.7 and bbPress 1.0 to play nice again is now in trunk [1862].
I’m specifically talking about “deep” integration, i.e. when you include WordPress inside bbPress to gain access to WordPress’ functions.
This will need a lot of testing, so please post any issues you have on the relevant Trac ticket, #972 (which will stay open until some more testing has occurred).
I recommend using the following code at the top of your bbPress bb-config.php file to include WordPress inside bbPress:
if ( !defined( ‘ABSPATH’ ) ) {
include_once( ‘/Full/Path/To/wp-load.php’ );
}
Note that this includes “wp-load.php” not “wp-config.php” or “wp-blog-header.php”. This avoids running WordPress’ template loader which presumably isn’t needed inside bbPress. Some implementations may want it though, so if you find you need it then give it a go and let us know how that goes.
Also note that all filters and actions set in WordPress whether default or added by plugins or themes are cleared out completely. That means that plugins and themes installed in WordPress cannot add filters or actions to bbPress at all. This may have some implications I’m not aware of yet.
Go nuts! “
hi gerikg,
thanks for your reply.
by saying `but actually i lost
define( ‘ADMIN_COOKIE_PATH’, ‘/wordpressmu’ );`?
i mean:
on task 7 after i clicked on save changes,
i got four lines (notfive as i wrote above)
define( ‘COOKIEHASH’, ‘9ff1a614da865684d07223b202d18708’ );
define( ‘COOKIE_DOMAIN’, ‘.10.10.1.20’ );
define( ‘SITECOOKIEPATH’, ‘/wordpressmu/’ );
define( ‘COOKIEPATH’, ‘/wordpressmu/’ );
i think this is the resean that
when i log into bbpress then
i can log into wordpressmu automatically
but i cant log into wordpressmu admin automatically
i think it has nothing to do with buddypress.
what do you think?
by the way
you can check this out ,it seems that some guy have met the same problem:
https://wordpress.org/support/topic/298537/page/2?replies=47
scroll down to the middle of the page (mjjinvincible’s post)
thanks
I just installed bbPress 1.0, and integrated it with my WordPress. Everything I can access seems to be working fine. However, when I try to go to the admin panel, I’m just redirected back to my bbPress’ main page. What can I do?
For bbPress Forum just download the plugin
for the BuddyPress Group Forum you need someone to convert it to BuddyPress compatible.
example = https://wordpress.org/extend/plugins/buddypress-group-forum-extras
Some of the bbPress plugins were converted.
Buddypress is a little tricky. What do you mean `but actually i lost
define( ‘ADMIN_COOKIE_PATH’, ‘/wordpressmu’ );`?
hi guys,
thanks gerikg’s instrucition,very helpful!
i followed gerikg’s instruction,but meet a problem.
on task 7 after i clicked on save changes,
i should get the code below:
define( ‘COOKIEHASH’, ‘9ff1a614da865684d07223b202d18708’ );
define( ‘COOKIE_DOMAIN’, ‘.10.10.1.20’ );
define( ‘SITECOOKIEPATH’, ‘/wordpressmu/’ );
define( ‘ADMIN_COOKIE_PATH’, ‘/wordpressmu’ );
define( ‘COOKIEPATH’, ‘/wordpressmu/’ );
but actually i lost
define( ‘ADMIN_COOKIE_PATH’, ‘/wordpressmu’ );
so when i log into bbpress then
i can log into wordpressmu automatically
but i cant log into wordpressmu admin automatically
does anybody have an idea what i have missed?
your help will be much appreciated.
thanks guys
One thing, not sure if it matters. The forum pages all return a 404 code, even though the page is displayed. This was an old problem with WordPress integration.
Here is something:
http://www.adrogen.com/blog/wordpress-wp-blog-headerphp-causes-404-in-ie/
Also, are you including wp-load.php or wp-blog-header.php? Should be wp-load.php.
There is another post on these forums on how to fix it but I cannot find it right now.