The issue arose when changing the domain from a devel url (example. devel.website.com) to the live site website.com
I changed the domain in every place I could find:
WP Options
WP / BBPress plugin for WP
bb-admin.php
I searched the database for any instances of devel.website.com and modified them (there were other instances in bb_meta, etc.
The user logs in through the WordPress admin, but is not logged into BB Press. Similarily, if the user logs out of WP Admin, they are not logged out of BB Press.
Anyone run into the same issue? Thanks for your help!
I’m trying to edit register.php in my template file so that it will use my WordPress one instead, this is the code I have so far, but it doesn’t work, any help thanks.
<?php if ( !bb_is_user_logged_in() ) { ?>
<?php header("Location: http://paperviewzine.com/wp-login.php?act=register"); ?>
<?php } else { ?>
<?php header("Location: http://paperviewzine.com/forums/"); ?>
<?php }; ?>
Hi guys first of all thanks to _ck_ for wonderful plugins. We at Ubuntu India have put up or new forum theme which had been using the kakumei theme ever since it came up. Check out or new theme , designed on default Kakumei.
http://forum.ubuntu-in.info/
I hope you like it ,comments ( good or bad ) are welcome.
I’m trying to integrate WordPress MU 2.8.3 and bbPress 1.0.2
When I access my site through WordPress everything works fine, I see myself logged in at bbPress and I can access the admin area. When I access my site through bbPress and then go to /wp-admin/, it redirects me here: /wp-login.php?redirect_to=http%3A%2F%2Fwww.mydomain.com%2Fwp-admin%2F. I can fill in the login name and password, and it’ll let me in, but it should just appear the dashboard in the first place…
I’ve followed Sam’s screencast, step by step, and tried it over three times with fresh installs… but still happens the same. But I don’t know, maybe I’m missing something.
First I install Wordpres Mu. Then I go to the bbPress installation page. I fill in everything to integrate it with WordPress. Then I map the user registrations, although I have also left this step for the last one in another installation/integration. I go WordPress, download the bbPress plugin, copy the cookies configuration, paste it into wp-config.php. The I delete all the cookies and temp files in my browser.
It’s strange, cause when I go to the home page of the site I can see I’m logged in:
WordPress ยต
This is a WordPress Mu powered site.
You can:
* Site Admin
* Log out
* Create a new blog
* Edit this file at wp-content/themes/home/home.php with your favourite text editor and customize this screen.
But it still won’t access the administration dashboard. I’ve tried registering another user giving it administration control, but the redirection thing still happens.
It’s kinda funny cause one of the times I installed WordPress Mu and bbPress while I was testing, I could integrate them with no problem. But when I tried it under the final domain, it always happens the same, and gives me that ‘little’ problem.
These are the cookies when I access the admin areas:
After WordPress login:
wordpress_logged_in_*****************
wordpress_*************
bb_user-settings-time-1
After going from WordPress Admin Dashboard to bbPress Admin Dashboard:
wordpress_logged_in_*****************
wordpress_*****************
wordpress_*****************
wordpress_test_cookie
bb_user-settings-time-1
wp-settings-time-1
wp-settings-1
I delete all the browser’s cookies and do the opposite.
After bbPress login:
wordpress_logged_in_*****************
wordpress_*************
bb_user-settings-time-1
After going from bbPress Admin Dashboard to WordPress Admin Dashboard:
This is when the redirection problem comes in!
wordpress_test_cookie
wordpress_logged_in_*****************
still in heavy development but I got the crucial stuff working.
Once I got most functions and plugins working at a decent level I will make my own theme out of it.
http://matsuri.moai.se
Subj.
I want do disallow ordinary users to edit their display_name in profile.
How could i do it ?
For WordPress the problem was solved by adminimize plugin. Maybe such a way for BB exists?
I registered a hosting space on www.netsons.com (it’s free). They offer a mysql database. I istalled wordpress and bbpress on the space, and worked. But the question is: when i installed bbpress…it asked me about a mysql url…i inserted netsons’s mysql url… it sayed ok.
But when i register a new user on forum…the record is not in netsons’s mysql!!! the user is visible only in bbpress forum panel.
So: why it asked me about a mysql URL if it don’t use it?
i’m newbie from italy…sorry
here is the site in question: www.waapsols.com
Its running Buddypress.
These are the steps i followed to integrate BB and BP… https://buddypress.org/forums/topic/bp-103-and-bbpress-which-version-plugins-cookies#post-20006
WPMU, BP, and BB is working good. But I just can’t get the logins to work, I mean when I login into WPMU, I am not automatically logged into BBPress Forum.
I am guessing thats the reason why in my BuddyPress, the forum is working fine, but who ever posts, there is no gravtar or name is seen 
Can someone help, what might have gone wrong.?
I would like to have my comment’s nested. I already have a comment nesting plugin for WP, but not sure if that could be reused for bbPress.
I have seen many people asking that tags are not getting deleted in bbPress 1.0 (Even I faced the same problem, but it was working in the default theme). So I just thought of writing a solution for it.
Open the topic-tags.php of your theme.
You would find something like this:
<?php if ( $public_tags ) : ?>
<div id="othertags">
<ul id="yourtaglist">
<?php foreach ( $public_tags as $tag ) : ?>
<li id="tag-<?php echo $tag->tag_id; ?>_<?php echo $tag->user_id; ?>">
<a href="<?php bb_tag_link(); ?>" rel="tag"><?php bb_tag_name(); ?></a> <?php $tags = bb_get_tag_remove_link (); if ($tags) echo '<small>'.$tags.'</small>'; ?>
</li>
<?php endforeach; ?>
</ul>
</div>
Replace it with:
<?php if ( bb_get_topic_tags() ) : ?>
<?php bb_list_tags(); ?>
That’s it!
You can also view the changes to topic-tags.php of the default theme in the trac:
https://trac.bbpress.org/changeset?old_path=%2Ftrunk%2Fbb-templates%2Fkakumei%2Ftopic-tags.php&old=940&new_path=%2Ftrunk%2Fbb-templates%2Fkakumei%2Ftopic-tags.php&new=2344