i changed it in bb’s admin and then i couldnt get back into it. i cant see where its stored in phpmyadmin, do you know where it is? the url for the bb installation the value for the actual forum site.
Where is the forums site url located
Published on July 12th, 2008 byWhere is
Published on July 12th, 2008 byhow do i change the log out link to use the log out of file of wordpress instead of bbpress, which isnt working for some reason.
im lookin in ‘kakumei’ logged-in.php file and it shows:
<p class="login">
<?php printf(__('Welcome, %1$s!'), bb_get_profile_link(bb_get_current_user_info( 'name' )));?>
<?php bb_admin_link( 'before= | ' );?>
| <?php bb_logout_link(); ?>
</p>
question is where is bb_logout_link(); so i can change the actual link? which file is that function located in.
thanks
Cookie Integration & Database Integration
Published on July 12th, 2008 byHi,
I am just going through the setup of bbPress and I have 2 questions about the above.
1. Add cookie integration settings:
If you want to allow shared logins with an existing WordPress installation.
Does this mean that users who register for the forum are also able to write posts on my blog? I can’t imagine this would the case, but seeing this made me a bit nervous.
2. Add user database integration settings:
If you want to share user data with an existing WordPress installation.
What’s the benefit behind this, besides centralizing user data?
Infinite Loops on posts and profiles with IIS
Published on July 12th, 2008 byHi there,
I’ve been using bbpress for a while but I recently updated my servers and switched all the sites over to it. Much to my frustration I am experiencing infinite loops when attempting to edit or view any profiles or topics. Thus making a rather rubbish forum!
Admin pages work fine, WP integration went through perfectly, topics can be posted BUT not viewed.
Right so heres the spec:
Windows Server 2008
IIS7
PHP 5.2.6
MySQL 5.1.25
Both the latest versions of WP and BBpress, WP is installed absolutely fine.
With debug activated I get the following:
REQUEST_URI: string(31) “/journal/messageboard/topic.php”
should be: string(37) “/journal/messageboard/topic.php?id=39”
full permalink: string(64) “http://www.XXXXX.com/journal/messageboard/topic.php?id=39”
PATH_INFO: NULL
If anyone can help me out I would actually love them a great, great deal…..
I found this thread, which is quite old:
http://comox.textdrive.com/pipermail/bbdev/2005-July/000206.html
But the fixes suggested there are in the settings file already.
Help would be appreciated and thanks in advance
M.A
Add BBpress to WordPress?
Published on July 12th, 2008 byHi to all!
For a simple (!!!) project I’m using WP and BBpress: I’ve change all the precedure for the users registration in BBpress and I like to integrate it with WP.
I’ve perfectly integrate the forum with the blog (including the function file in bb-congif.php), but I cannot understand how can I include the registration block in WP.
Can someone give me any kind of information?
Intergrating the theme
Published on July 12th, 2008 byHey, Im not sure how to go about integrating the forum with my wordpress blog… theme wise.
I mean how would I go about giving it the same theme without copying everything from the blog theme to the forum theme. as in like structure of the header of the blog inserted on the forum (would that even work)
are there any tutorials for this out there..
thanks
Integrating to WordPress?
Published on July 11th, 2008 by BuddeI was wondering, How do I go about adding this to my WordPress install? or can you only do this for WordPress MU, i’d like it for my Self-Hosted WordPress Blog.
No user found
Published on July 10th, 2008 byHi there,
I hope I’m in the right category here. I have a problem here on bbpress.org. When I look at my profile, I get an error message, telling me that I don’t exist ;(
How come?
Cannot Integrate users with WP
Published on July 10th, 2008 byOk, first of all I should note that this is the second time iv installed this and i still got the “minor error: duplicate user_nicename” message or something like that.
But this time it worked well and I logged in straight away as the admin. But when I went to login to the WP-Admin, I couldnt log back in the bbPress as admin and as any username.
So what I then did was clear all the cookies, then it allowed me to log back in as admin in bbPress, so now im in. But… I click on the “Admin” link at the top to go to the settings and all that stuff. and its spits out this:-
Warning: require_once(../wp-blog-header.php) [function.require-once]: failed to open stream: No such file or directory in /home/picbico/public_html/forum/bb-config.php on line 2
Fatal error: require_once() [function.require]: Failed opening required ‘../wp-blog-header.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/picbico/public_html/forum/bb-config.php on line 2
I also might need to mention that I tried to ‘intergrate’ the wordpress functions with it by applying this line to the bb-config.php file : require_once(‘../wp-blog-header.php’);
thanks for any help let alone all the work you guys have put into this forum. i appreciate it
Site integration automatic login?
Published on July 10th, 2008 by hinchI have successfully merged bbpress with my website and it works fine sharing user data and logging in/out… very almost.
When a user first moves to the forum it shows them as not logged in, though if they click a forum link or refresh the page they are then shown as logged in.
I only modified pluggable.php a little to make the cookie easier to handle and I’ve tried adding a function (below) in index.php and template header. Very crude , checking a cookie is set and calling the login function, but it’s just a test:
if (isset($_COOKIE[bbpres...]) && isset($_COOKIE[IHuser...]) && isset($_COOKIE[IHpass...])){
$login = decode($_COOKIE[IHuser...]);
$password = decode($_COOKIE[IHpass...]);
bb_login($login, $password, $remember = false);
}
Really I’m looking for where bbpress first checks to see if a user is logged in and sets headers but so far I’m out of luck. Where do I need to put my function so a user will be shown as logged in as soon as the navigate to the forum?
P.S. I will build a more solid function so a users password isn’t in a cookie, like I say – just a test!