Ahh, and, in equal measure, woops.
define('COOKIE_DOMAIN', '.audreysargent.com.net');
should read
define('COOKIE_DOMAIN', '.audreysargent.com');
That .net
meant that the cookie could not be set. Sorry.
You guys know that you can start your own threads for your sites right 
Trent
Thank you very much. I didn’t realise it would be as simple as removing a filter, that’s cool
You can use the script attached to that ticket: https://trac.bbpress.org/ticket/671
It will only work once you upgrade to the next version of bbPress (it’s not out yet
) or if you’re running the “unstable” code in the repository.
Follow the instructions in the last comment.
Make a new file in your my-plugins/ directory with the following code in it. Then activate the plugin in your bbPress’ admin panels.
<?php
/*
Plugin Name: No ?replies
Description: Get rid of the ?replies=# ugliness in topic links
Plugin URI: https://bbpress.org/forums/topic/getting-rid-of-replies
Author: fel64
Version: 1.0
*/
remove_filter( 'get_topic_link', 'bb_add_replies_to_topic_link' );
?>
I have already checked the config.php file for whitespace at the beginning and end, but there was nothing there. Thats all I know to check for that…
Warning: Cannot modify header information – headers already sent by (output started at /home/content/k/a/h/kahil/html/Your_Kahil/forum/bb-includes/db.php:151) in /home/content/k/a/h/kahil/html/Your_Kahil/forum/bb-includes/functions.php on line 1833
That is what I get for one thing… i get one for line 168 on pluggable.php
I don’t know what to do or what changed… 
Please help…
Thank you,
Kahil
Just tried, but haven’t had any of the expected emails in the last few hours. Hopefully it’ll come through soon.
I think I see what you mean. But that’s very strange. Are you logged in? If you are, attempting to access wp-login.php should redirect you to the admin panel – not just in the act of logging in, but whenever anyone that is logged in tries to get there.
Can you check your cookie info? In FF that’s Tools > Options > Privacy > Show Cookies, find cookies for your site and then look at the domain
and path
settings.
For those of you who have your wordpress and bbpress installs together and would like have the avatars display in the wordpress side as well…
Here is some code you can add… This is what I use in the sidebar over at yourkahil.com
<?php global $user_identity;
get_currentuserinfo();
if ($user_identity == ”) {
echo(‘Welcome Guest’);
} else {
echo(‘<img src=”/forum/avatars/’ . strtolower($user_identity) . ‘” alt=”avatar” />’);
}
?>
This will work if you would like to display the avatar outside of the loop in bbpress as well. All you have to do is change the image source line to reflect where you have your avatars stored…
Hope that helps some people!!!
I’ll do it for $$$
) pay me
That should do 
Put this in your wp-config.php:
define('COOKIE_DOMAIN', '.audreysargent.com.net');
and this in bb’s config.php:
$bb->cookiedomain = '.audreysargent.com';
$bb->cookiepath = '/';
Hopefully that’ll be all.
Yes, he only registered once. If logging in to one should log you into both, then things definitely aren’t working the way they’re supposed to.
The way things are set up is the following:
WordPress is installed in my root HTTP directory.
BBPress is installed in a subdirectory called “forums”.
You can see everything in action here (put on your sunglasses, it’s bright.):
forums at http://forums.audreysargent.com
Need more info?
Thanks for the help.
fel64 isn’t at loinhead.net
I wanna see this
@gspark001 lets say you have a wordpressmu up and you want a place where people can see posts from all of the WP installations. I run a family site. Some prefer to read each Website others prefer to look at the forums for updated info.
I had phpBB connect for the same reason.
@fel64 I keep getting a get_user error when I try to post. It seems to be setup correctly, but when I post it gives:
Fatal error: Call to a member function get_user() on a non-object
and references functions.php
lol. Gotcha. Sorry to pry it out of you.
that was evil of me.
I’m completely new to all this, so I don’t think I’m qualified to test it out for you, but it’s a great idea! Best of luck.
You have my email already Sam from the list and I am game 
Problem is that REV 892 has ate my forum, but I will try it out!
Trent
Erm, why so top secret? You might get some help and brainstorming if you disclose it, you know.
I have a question-
One of my members wants to make sure he stays logged in. I had an SMF forum which allowed you to choose “stay logged in for a week” or “forever”. He would like something similar, and claims he has to log in every time he comes back to the forum.
I know I don’t have that issue, but I’m also the keyholder- is it supposed to be automatic that someone stays logged in?
If not, is there a plugin, or a hack, that could make this possible?
Thanks. 
EDIT: To elaborate on this, I have integrated this with wordpress, and I’m beginning to wonder if I have an integration problem:
He registered through BBpress, and the account was created in my WP-admin, no problem. I asked him to try logging in to the WP control panel, to see if checking “remember me” on that login was what did it. He couldn’t log in with his BBpress password, not even the random one that was sent to him.
I had to go in and manually set the password for him. Is that how it’s supposed to work? Am I going to have to do this for each user created? (I can’t believe that, so there must be another issue.)
Sorry to bring up two problems in the same thread, if it’s better I can start a new one for the integration issue.
Thanks in advance.
Hello, I’ve been trying out this product and really loved it. I’m wondering if anyone of the experts out there be interested to help me setup a site with bbpress and wp? Just a simple site will do nothing complex.
And of course to show my support for this community, I’ll pay for your work 
Please let know if there’s any interest?
Thanks heaps
On the end of URLs in my forums it always attaches a ?replies=#
to the topic link (or redirects you if you open a topic without that in the url) where # is the number of replies to the topic. It’s really ugly and I want to get rid of it; no other forums apart from this one that I’ve seen have it! I’m using slug permalinks but I believe it was there before that. I’ve got the rules from bb-admin/rewrite-rules.php
in my .htaccess because Multiviews didn’t seem to work for me. Anyone know how to get rid of that?
Ignore it forever because mdawaffe will never get around to deleting it 
Trent
very cool
) now how to delete the gspark001 account
Edit the template file front-page.php
so that the ‘latest discussions’ part is beneath the ‘forums’ part.
MMember
I registered as ‘M’ on the wp forums ages ago. 
And I run all my registrations through wp instead of bbpress, so I’m no help with this one other than that.
The add_action( ‘under_title’ .. ) part has me curious. Where does the ‘under_title’ come into play? I was trying to find it in my bbpress code. I want to add a wide 250×250 block for example under ‘Add this topic to your favorites’ on the left of the tags column.
http://www.grindhouse.com/forums/topic/26?replies=1
How can I accomplish this?