Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 49,001 through 49,025 (of 64,452 total)
  • Author
    Search Results
  • #78629
    johnhiler
    Member
    #31635
    leapfiletony
    Member

    Hi everyone, I’m new to bbpress and to this forum.

    Is there some sort of plugin that sends alerts or email notifications to a moderator whenever there is a new post?

    Any help is greatly appreciated. Thanks!

    #78621

    In reply to: highlight first post

    johnhiler
    Member

    Are you using 0.9 or 1.0?

    1.0 added some extra tricks to make it easier to style posts based on their position:

    https://bbpress.org/forums/topic/how-to-add-different-style-to-the-first-post

    #72609
    prosforpros
    Member

    BTW, I am using “require_once(‘/path/to/wordpress/directory/wp-blog-header.php’); ” for theme integration. I think this is what’s causing the registration to not work.

    #72608
    prosforpros
    Member

    I have the same issue with silu. How did you resolve it?

    #78315
    gerikg
    Member

    download and install this: https://wordpress.org/extend/plugins/bbpress-integration/ then it will tell yo the right lines to put.

    #78200
    gerikg
    Member

    The bbPress Integration plugin doesn’t make it work. It gives you instructions on what to do next.

    If you have WPMU then you’ll receive four lines from the plugin

    define( 'COOKIEHASH', '????????????????????????????????????' );
    define( 'COOKIE_DOMAIN', '.????????????????.com' );
    define( 'SITECOOKIEPATH', '/' );
    define( 'COOKIEPATH', '/' );

    Paste it in wp-config after <? then do the same in bb-config without the first line.

    #78199
    gj-tje
    Member

    Hi there! :)

    I’ve got the same problem with a website I’m working on.

    I’ve tried every option posted here, but nothing seem to work.

    I am working with WordPress 2.8.4 and bbPress 1.0.2.

    I can log in on the bbPress and the WordPress, but the cookie integration (so people only have to log in from 1 place, logged in into both) isn’t working, they seem to get the user information from 1 table in 1 database.

    I’ve verified that the keys are the same, all the keys are defined in both wp-config.php and bb-config.php, with the same keys and the same values for the salt. I even have a define(‘cookiepath’, ‘/’);, which also doesn’t seem to work. :(

    I also have bbPress Integration (plugin) installed in WordPress, didn’t help as well.

    Anything I may have missed?

    hopeful4info
    Member

    I am looking for someone to help me with WordPress and bbPress. I have developed the wordpress site as a membership site and want to include a forum. I wasted about a month or more with SMF and couldn’t get it to work properly, so today I switched to bbPress and have it working in a iframe in one of the wordpress pages. The only problem is getting the cookies and all that to work so a person logged into the membership site can go right into the forum without having to re-log in and vice-versa.

    I installed the bbpress integration plugin and went through all the set up procedures numerous times to no avail. I also went through the “WordPress Integration settings” numerous times. I have compared both the WordPress config and bbpress config files to be sure the Auth_Key, Secure_Auth_Key and Logged_In_Keys were identical and they are.

    I have put the – define( ‘COOKIEPATH’, ‘/members/’ ); – line in the WPconfig file as instructed, but I just put it in exactly as shown here. I’m not sure if I should replace “cookiepath” with an actual path or if the word cookiepath is what they want.

    I am not a code person, but I can get along sometimes ok. sometimes not! This is a NOT day.

    Would some kind soul be able to help me with this?

    If not please steer me toward someone who can help.

    #77079

    In reply to: bbpress and memcache?

    _ck_
    Participant

    Output caching can be effective for parts of the page (I do it in several plugins) but caching an entire page for a forum is not as good of an experience for forums vs blogs.

    Blogs are post once, read many times. Forums are post many times, read many times.

    When you aren’t viewing comments, blogs barely change, on forums everything changes constantly.

    Unless you don’t mind showing guests outdated info.

    One day someone will port WP Super Cache or similar (but don’t look at me).

    It will be effecting for showing guests outdated info.

    #77078

    In reply to: bbpress and memcache?

    johnhiler
    Member

    Hey Frooyo – I think you mention output caching every change you get. :-) Your comments about it are the first comment on this thread…

    #77077

    In reply to: bbpress and memcache?

    frooyo
    Member

    @All

    There does appear to be an option that everyone is overlooking … and that’s Output Caching.

    We’ve talked about memcache, optcode caching and mysql query caching … but truly the most effective is simply perform Output Caching for non-logged in users.

    In case someone is not aware, Output Caching is saving to disk the generated HTML. That way, instead of memcache where you have to make a call to the memcache server, or in mysql you’re still making the database call or in optcode caching, it’s simply pre-compliling the PHP … Output Caching is by far the fastest because it essentially just serving up pre-generated HTML straight from disk.

    #78564

    In reply to: RSS feed for user

    Interesting. There actually IS an RSS built into your user ID: https://bbpress.org/forums/rss/profile/otto42

    But it’s used for your favorites so not so much. You can see all your posts in your profile (recent posts) so in theory this should be ‘exportable’ to RSS.

    The rss.php file has this:

    // Get latest posts by default
    case 'all-posts':
    default:
    if ( !$posts = bb_get_latest_posts( 35 ) )
    die();
    $title = esc_html( sprintf( __( '%1$s &raquo; Recent Posts' ), bb_get_option( 'name' ) ) );
    $link = bb_get_uri();
    $link_self = bb_get_posts_rss_link();
    break;

    Which I think you could toss an extra if if ( $user->ID == bb_get_current_user_info( 'id' ) ) but that would only punt out a list of the current user’s posts, and not be a way to see anyones. The structure is there, though.

    #78611
    johnhiler
    Member

    _ck_ posted a fix here that you can make to your template:

    https://bbpress.org/forums/topic/navigation-not-working-only-for-page-1

    I installed her “topics per page” plugin, which fixed it nicely as well (and gave more functionality to boot).

    #78572
    Jan_d
    Member

    Did you mean this:

    ‘/*You will also have to manually ensure that the following constants are equivalent in WordPress’ and bbPress’ respective config files.

    WordPress bbPress

    AUTH_KEY <=> BB_AUTH_KEY

    SECURE_AUTH_KEY <=> BB_SECURE_AUTH_KEY

    LOGGED_IN_KEY <=> BB_LOGGED_IN_KEY */’

    If so, then yes …

    #78563

    In reply to: RSS feed for user

    Very good alternative is to create a private forum section where only 1 user is allowed to post a 1 topic where he can always respond to hes created post about whatever he does at the moment. something like twitter. Then other users can RSS this topic.

    Well maybe it is out of theme, but good idea for many others who wishes to alternatively socialize his bbpress.

    #31569
    johnnydoe
    Member

    i’m looking for a banner manager/banner rotator plugin for bbpress like “WP-BANNERIZE” (it comes with a banner impression counter and campaign manager).

    is such a thing already in the pipe or should i stick with those external standalone ad-scripts for now ?

    thanks

    #77504

    In reply to: All RSS Feeds Broken?

    bbhack
    Member

    There is also a patch here (see the attachements section of the ticket page below) –

    https://trac.bbpress.org/ticket/1181

    But I haven’t tried the patch myself.

    #77503

    In reply to: All RSS Feeds Broken?

    bbhack
    Member

    To fix this you will need to remove the raquo characters from your core rss.php file. Then your RSS feeds will work again.

    It looks like this bug was introduced in changeset 2323

    https://trac.bbpress.org/changeset/2323

    #78562

    In reply to: RSS feed for user

    Olaf Lederer
    Participant

    this feed is not standard in bbpress, but maybe it’s quite easy to add this function (will check this tomorrow)

    #78601
    Don Spark
    Member

    thanks guys, that worked

    #78554

    In reply to: jquery @ global header

    jQuery is already bundled with bbPress (and WordPress), so you can just use

    <?php bb_enqueue_script('jquery'); ?>

    in your theme’s functions.php and it’ll automatically be included in your header.

    Same applies for WordPress, but using wp_enqueue_script instead…

    But to answer your original question :P use <?php bb_active_theme_uri(); ?> to output the template directory or <?php get_bb_active_theme_uri(); ?> to return it as a variable.

    #78568
    Jan_d
    Member

    Thanks, but that did not work. I allready had bbpress-integration installed.

    What did you mean by “get the info”?

    I copied your code into the config-files. Nothing changed.

    Any other ideas?

    #78528

    It says that its not supported in my country. What a host? Can you provide an alternate method? I would like to read it.

    #78600

    try 755 not 777. you should always use a more tight permission

Viewing 25 results - 49,001 through 49,025 (of 64,452 total)
Skip to toolbar