Published on October 10th, 2008 by Radium
Hello, I have a little issue with logging in between wordpress and bbpress at my website http://www.ridelegend.com/ & http://www.ridelegend.com/community/
1. When I log in at BBpress it logs me out of WordPress. I can access the BBpress admin page.
2. When I log in at WordPress it logs me in at both WordPress and BBpress, but I cannot log out at BBpress. I can access both the bbpress and WordPress admin panels fine though, and logging out at WordPress works.
I have no plugins active other than akismet. My custom theme is based on the alpha 1 theme, but I modified to match the alpha 2 theme via the list of changes in the tracker. Is this just a glitch with alpha 2 or is there something I can do?
Thank you!
Published on October 10th, 2008 by
I’m trying to use the function bb_new_topic with the Post Notification plugin to send out an email when a new topic has been posted. The plugin as written by the author uses bb_new_post to notify of new posts, which has access to the topic ID via get_topic($topic_id) to pass in the title, author, and link of the post to the email. This variable doesn’t seem to be available with bb_new_topic. How can I get the title, link, and author to be passed into the email? I’m not sure what variables are available.
Thanks!
Published on October 10th, 2008 by agitainment
Hi.
I recently installed bbPress on my WordPress site here at http://agitainment.com/ics/forum/.
I’ve built a theme based on 1col_fixed 1.1 (I believe it’s kakumei with most of the CSS stripped out). In any case, when I go to my forums I can see my Gravatars and default avatars in kakumei, but when I switch on my theme they disappear.
Is there a php file I’m missing or a block of code somewhere I need to copy over from the kakumei theme to get these to work? If so, where should I put the code?
Thanks!
Published on October 10th, 2008 by
In just installed BBpress on www.midnightedition.com/buzz and it looks so beautiful and elegant. Its simply the best forum I have seen till date. I prefer this over vbulletin and all others. All junk is out. Simple Elegance.
I am however facing 1 problem.
http://www.midnightedition.com/buzz/ is the place forum is on.
BUT if i click on any link its leading to 404 error
http://www.midnightedition.com/buzz/forum/midnightedition-community
or on any profile even
http://www.midnightedition.com/buzz/profile/puneet
In all probabaility its a .htaccess file I need to add something. Can someone please tell me what I shd add to my .htaccess file to make this work.
Or any other suggestions.
I love BBPRESS. its simply SUPERB.
Published on October 10th, 2008 by Edward
WordPress 2.6.2 + bbPress 1.0 Alpha 2. I have done the cookies config, auth_salt, logged_in_salt, etc.
When I log in WordPress, I am also log-in in bbPress, but cannot open bbpress’ control panel, and also cannot log out in bbPress; When I log in bbPress, it seems normal, I can open bbPress’ CP, but not log-in in WordPress.Only when I log out WordPress, I can also log out bbPress.
How to resolve?
Published on October 10th, 2008 by wiseacre
Hi. This si not a true plugin – just a stupid script for removing “deleted” topics and posts from the DB. Thanks in advance for any feedback.
$link=mysql_connect("host","user","password");
mysql_select_db("database");
//delete topics metadata
$res=mysql_query("SELECT topic_id FROM bb_topics WHERE topic_status>0;") or die(mysql_error());
while($row=mysql_fetch_row($res)) {
mysql_query("DELETE bb_meta.* FROM bb_meta WHERE object_type='bb_topic' AND object_id=$row[0];") or die(mysql_error());
};
mysql_free_result($res);
//delete posts metadata
$res=mysql_query("SELECT post_id FROM bb_posts WHERE post_status>0;") or die(mysql_error());
while($row=mysql_fetch_row($res)) {
mysql_query("DELETE bb_meta.* FROM bb_meta WHERE object_type='bb_post' AND object_id=$row[0];") or die(mysql_error());
};
mysql_free_result($res);
//delete topics & posts
mysql_query("DELETE bb_topics.* FROM bb_topics WHERE topic_status>0;") or die(mysql_error());
mysql_query("DELETE bb_posts.* FROM bb_posts WHERE post_status>0;") or die(mysql_error());
mysql_query("DELETE bb_meta.* FROM bb_meta WHERE meta_key='deleted_posts';") or die(mysql_error());
//some extras - attempt to "correct" autoincrement
$row=mysql_fetch_row(mysql_query("SELECT MAX(topic_id) FROM bb_topics;"));
if($row[0]!="") {
$correct=$row[0];
}
else {
$correct=1;
};
mysql_query("ALTER TABLE bb_topics AUTO_INCREMENT=$correct;") or die(mysql_error());
$row=mysql_fetch_row(mysql_query("SELECT MAX(post_id) FROM bb_posts;"));
if($row[0]!="") {
$correct=$row[0];
}
else {
$correct=1;
};
mysql_query("ALTER TABLE bb_posts AUTO_INCREMENT=$correct;") or die(mysql_error());
$row=mysql_fetch_row(mysql_query("SELECT MAX(meta_id) FROM bb_meta;"));
if($row[0]!="") {
$correct=$row[0];
}
else {
$correct=1;
};
mysql_query("ALTER TABLE bb_meta AUTO_INCREMENT=$correct;") or die(mysql_error());
mysql_close($link);
Published on October 10th, 2008 by Shagalaga
Can somebody create a plugin to preview the first Post of a topic by moving the mouse over it?
here are some examples:
http://dynamicdrive.com/dynamicindex5/dhtmltooltip2.htm
http://dynamicdrive.com/dynamicindex5/balloontooltip.htm
http://dynamicdrive.com/dynamicindex5/fixedtooltip.htm
Published on October 9th, 2008 by
Hello,
i have a problem with the rss feed of topics: many topics have only the title displayed, with “1/01” date
why?
Bye
Published on October 9th, 2008 by
I just recently installed and integrated WP 2.5 w/ a fresh install of bbPress 0.9.0.2. I followed the directions here, https://bbpress.org/documentation/integration-with-wordpress/ except bbPress isn’t picking up the WP cookie and vice versa. You can see by going to my site and registering:
http://sienasaintsblog.com/
and the forum is here:
http://sienasaintsblog.com/wordpress/bbpress/
Can anyone assist? Thanks!
Published on October 9th, 2008 by Bharat Karavadra
The version number still states
This is bbPress version 1.0-alpha-1 in the Dashboard content and footer – I don’t know where else this may appear.