Search Results for 'bbpress'
-
AuthorSearch Results
-
December 1, 2006 at 4:56 am #49532
In reply to: Plugins for WordPress integration
hdiaz
MemberI have installed wordpress in the main dierctory, and bbpress as a subdirectory. They are both working fine.
I read the following entry :https://bbpress.org/documentation/integration-with-wordpress/
However I would like to doble check.
“defining WP_BB as true” does it mean ..= ‘wp_bb’ ; or …= ‘true’ ; ?
and,
“define $bb->wp_home and $bb->wp_siteurl as your WordPress blog address and WordPress address, respectively.”
does it mean :
$bb->wp_home = ‘url of wp’;
and,
$bb->wp_siteurl = ‘url of wp’;
Thank you!
December 1, 2006 at 2:55 am #51157In reply to: Private Forum script
Trent Adams
MemberSo10. That is beautiful! There are 4 or 5 of you that really are rocking and rolling! I will do some research here because really there are about 20-30 plugins now for bbPress bouncing around. I will try and think of a way to get them listed in one place…..
Trent
December 1, 2006 at 2:55 am #51730In reply to: An alternative to sub-forums?
spencerp
MemberI would love to see something like sub-forums implemented into bbPress earlier in the “game”. I think that would be so awesome. phpBB hasn’t even gotten to that “point” until phpBB3 beta or whatever.. lol!
I know it might not work, and function extacly like “that”, but.. atleast it’s a start of it..

spencerp
November 30, 2006 at 8:44 pm #51766so1o
ParticipantNovember 30, 2006 at 5:58 pm #51548In reply to: Full Content of Most Recent Post on Front-Page?
Null
Member<?php $topics = $bbdb->get_results(“SELECT * FROM $bbdb->topics WHERE forum_id = $forum_id ORDER BY topic_time DESC LIMIT 0,10”) ?> gives me a error:
bbPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘ORDER BY topic_time DESC LIMIT 0,10’ at line 1]
SELECT * FROM bb_topics WHERE forum_id = ORDER BY topic_time DESC LIMIT 0,10
November 30, 2006 at 3:36 pm #1039Topic: Plugin – Limit Latest Discussion
in forum Pluginsardentfrost
MemberThis plugin is another simple one. It allows you to set an inactivity limit on threads shown on the forum main page. The default is set to 7 days, and if you like that setting, then all you have to do is put the file in your my-plugins directory. If you want to change it, it’s easy enough (desciption in the readme).
You can download the file and read the instructions at http://faq.rayd.org/bbpress_limit_recent_activity/
You can see it being used at http://www.rayd.org/forums/ (notice how there are no threads in the “Latest Discussion” section whose last post is older than a week).
Enjoy!
November 30, 2006 at 3:16 pm #51953In reply to: Latest bbPress Posts In WordPress
ardentfrost
MemberI think I made a similar script yesterday. I didn’t make it as a widget because I never did much customization with wordpress itself.
Anyone got an example of this being used? I might want to change the way mine looks if another looks better. (if you want to see what I did, you can view it at http://www.rayd.org/ … the right side forum list thing)
November 30, 2006 at 1:58 pm #51952In reply to: Latest bbPress Posts In WordPress
spencerp
MemberYeah true.. Trent, thanks for clarifying that for everyone, and me!

spencerp
/Me didn’t get to bed yet, so.. my brain is now working in reverse, compared to your’s.. since you got the sleep.. lol!!
November 30, 2006 at 1:53 pm #51951In reply to: Latest bbPress Posts In WordPress
Trent Adams
MemberNeeds to be an option though because with that code in there, it will exclude when most users wouldn’t really need anything excluded. As well, that is only for the sidebar part, not the widget.
Trent
November 30, 2006 at 1:34 pm #51950In reply to: Latest bbPress Posts In WordPress
spencerp
MemberThis is the block of database code that Trent had “fixed” up for me, to exclude the one forum.
(Found near end of plugin file)
function wp_bb_get_discuss_sidebar() {global $wpdb,$bbpath;
$bbtopic = $wpdb->get_results("SELECT * FROM bb_topics WHERE topic_status = 0 AND forum_id NOT IN ('3') ORDER BY topic_time DESC LIMIT 10");
Where => (‘3’) is the forum id to exclude..

spencerp
November 30, 2006 at 1:05 pm #51844In reply to: To display [Resolved], by the thread’s title
spencerp
MemberYou’re so awesome!! It works!! Thanks a ton!!
<?php/*
Plugin Name: My Resolve Title
Plugin URI: https://bbpress.org/forums/topic/338?replies=4#post-1764
Description: Puts [Resolved] by the thread's title, for threads that are marked as Resolved.
Author: so1o
Version: 0.1
Author URI: http://www.adityanaik.com/forums/
*/
function my_resolve_title($id){
global $topic;
if ('yes' == $topic->topic_resolved)
return sprintf(__('[Resolved] %s'), $topic->topic_title);
return $topic->topic_title;
}
add_filter( 'topic_title', 'my_resolve_title');
?>
spencerp
November 30, 2006 at 12:29 pm #51949In reply to: Latest bbPress Posts In WordPress
Trent Adams
MemberIt isn’t put in as an option, (though it would be easy to do), but all it really is, is adding SQL statement to exclude a forum. Maybe a guy should put a plugin code option for number of posts displayed as well as excluding a forum.
Trent
November 30, 2006 at 10:20 am #51948In reply to: Latest bbPress Posts In WordPress
Atsutane
MemberGlad to see someone is using my plugin
The plugin has been listed before but it gone now, thank’s for re-posting it.Maybe u can send me the fix and i add it into the plugin.
November 30, 2006 at 3:22 am #51628In reply to: bbPress Forum Host
Trent Adams
MemberSince the contact information is in the post, I am closing this post.
Trent
November 30, 2006 at 3:20 am #51762Trent Adams
MemberThis is currently the only way that bbPress gives new users passwords. It serves a double purpose. The first is a record of a password for a user if they don’t end up changing it and second of all, it makes sure that people register with an actual email address (which stops most spam bots right there) because they have to retrieve their password from email.
If you need something, I would assume it would require a core hack unless someone can develop a plugin. Right now, I don’t think anything is in the works.
Trent
November 30, 2006 at 2:29 am #1038Topic: Latest bbPress Posts In WordPress
in forum PluginsTrent Adams
MemberI don’t know if this plugin is listed anywhere in the forum (can’t find it), but this is a plugin that will have recent forum posts from bbPress in your WordPress blog. Sidebar or otherwise. I use it and it is a great little plugin:
Recent bbPress Discussion in WP Plugin
As well, if you want to exclude a particular forum from the list, I have a little fix. Reply if that would help you.
Trent
November 30, 2006 at 1:17 am #50839In reply to: Error for tags.php
richardjeanderson
MemberOK, I’ve solved the problem!
The version of PHP on my server is 4.4.4, which should be compatible with bbpress. I recalled that in my moodle installation, we hit issues that could be resolved by adding a .htaccess file with the following line:
AddType x-mapp-php5 .php
i.e. asking for php to be interpreted as php 5? (I’m not a php person – is that correct?).
Creating a .htaccess file with this line in it and dropping it into my bbpress folder solves the tag.php problem . . . .
November 30, 2006 at 12:46 am #51908In reply to: Help with a plugin
spencerp
Memberardentfrost, maybe you can help me..? I’m using the bbPress Post (0.02) by mByte, and with his plugin.. I had made a forum for the blog posts to show up, however.. I would like to make the blog posts, stay ONLY IN the “Blog Article Discussions” forum..
Instead of them showing up in the “Latest Discussions” part of the forums index page.. And just have ONLY the threads made in the forums, show in the “Latest Discussions” section of the forum.. Is there maybe something that could be done for this?
I’m basically asking to exclude one of the forums, from the “Latest Discussions” section. Thanks in advanced..

spencerp
November 30, 2006 at 12:44 am #50838In reply to: Error for tags.php
richardjeanderson
MemberI’ve reuploaded bbpress – makes no difference.
I’ve removed plugin (display_name.php)
I temporarily renamed my_templates folder to return back to default template.
The forum now sits at http://www.learning2goblog.org/forum
Click any of the tags and it takes you to the correct page. Click on the breadcrumb to take you back to tags.php and it dies as described.
All very strange . . . .
November 30, 2006 at 12:36 am #51281In reply to: question about exporting from bbpress
BrendonKoz
MemberSince Ahni was interested, and I’ve been itching to do a conversion script to see how easy/hard it can be, I figured I’d chime in. I’m not familiar with either application’s inner workings, but looking at a database and comparing — now that I can get into!

So, technically, I’m only interested to do a direct convert based on what he wants, if I get around to it at all (don’t want to make any promises here). Anyone else would be more than welcome to modify whatever code I write later on. I can make it publically available. Should be pretty simple, I would think.
November 29, 2006 at 10:23 pm #51280In reply to: question about exporting from bbpress
Trent Adams
MemberYou might be able to use the integration plugins for WP and bbPress prior to the export/import to sync the users first. Then the import would work off the WP users table.
Trent
November 29, 2006 at 10:17 pm #49531In reply to: Plugins for WordPress integration
Trent Adams
MemberLittle duplication, but since this is a sticky post, I thought I would add it here:
It is important to make sure for integration to work that you have the following plugin for sure installed in WordPress and the table prefix (in options of plugin in admin area of WP) correctly installed.
This plugin will pull all registrations from bbPress into WordPress as well as make the login integration work properly.
If you have users in WordPress that you want to be able to login to bbPress prior to the integration, it might be worth you while to place the following plugin in your /my-plugins/ directory of bbPress.
The first plugin will work for most users, but the second is available if needed.
Thanks,
Trent
November 29, 2006 at 10:15 pm #51917In reply to: bbPress plugin(s) not grabbing user’s email addy..
Trent Adams
MemberSpencer and I got this going. It is important to make sure for integration to work that you have the following plugin for sure installed in WordPress and the table prefix (in options of plugin in admin area of WP) correctly installed.
This plugin will pull all registrations from bbPress into WordPress as well as make the login integration work properly.
If you have users in WordPress that you want to be able to login to bbPress prior to the integration, it might be worth you while to place the following plugin in your /my-plugins/ directory of bbPress.
The first plugin will work for most users, but the second is available if needed.
Thanks,
Trent
November 29, 2006 at 10:10 pm #51916In reply to: bbPress plugin(s) not grabbing user’s email addy..
spencerp
MemberTrent, you’re so awesome!! After talking with Trent on GoogleTalk, he has helped me get this problem squashed! And, I had to slap myself twice, because I didn’t upload the bbPress Integration plugin, to my wp-content/plugins folder…
Thanks again for letting me know that Trent.. as well as the cookiedomain settings you gave above!

spencerp
November 29, 2006 at 10:06 pm #51740In reply to: Using WordPress PHP functions inside of BBPress
Michael Adams (mdawaffe)
MemberWhat about it doesn’t work? Do you get an error?
-
AuthorSearch Results