Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 5,851 through 5,875 (of 7,457 total)
  • Author
    Search Results
  • #52391
    Greg
    Participant

    I got some help on the bbPress forum and think I’ve sorted this out. I was loading “wp-blog-header.php” for deep integration, but loading “wp-load.php” seems to be better. No more 404 headers in the forum, and the RSS feed problem I had previously is also fixed.

    I suspect buddypress.org is using “wp-blog-header.php” because it is showing the same symptoms. Perhaps the admin here would like to try “wp-load.php”.

    Thread on bbPress forum:

    https://bbpress.org/forums/topic/deep-integration-google-might-not-be-indexing-your-forum-pages?replies=9#post-57859

    #52359
    Greg
    Participant

    I’ve also seen the blank pages.

    Returning to the 404 issue (and cross posting from https://bbpress.org/forums/topic/help-404-error-but-page-displays?replies=3#post-57822), it looks like WordPress is setting the 404 because it doesn’t recognize the bbPress page that is loading.

    When the global WP object is constructed, the function WP->handle_404 calls “status_header( 404 )”.

    As a workaround, I modified “handle_404” to lay off the 404 if “BB_PATH” is defined (i.e. when a bbPress page is loading). This seems to work ok.

    Here’s the new “handle_404” at around line 445 in “wp-includes/classes.php”.

    function handle_404() {
    global $wp_query;

    if ( !defined( 'BB_PATH' ) && (0 == count($wp_query->posts)) && !is_404() && !is_search() && ( $this->did_permalink || (!empty($_SERVER['QUERY_STRING']) && (false === strpos($_SERVER['REQUEST_URI'], '?'))) ) ) {

    // Don't 404 for these queries if they matched an object.
    if ( ( is_tag() || is_category() || is_author() ) && $wp_query->get_queried_object() ) {
    if ( !is_404() )
    status_header( 200 );
    return;
    }
    $wp_query->set_404();
    status_header( 404 );
    nocache_headers();
    } elseif ( !is_404() ) {
    status_header( 200 );
    }
    }

    #52322

    In reply to: Fighting Splogs

    Michael Berra
    Participant

    Thanks – but sadly nothing seems to work:

    I have now:

    – rename or even delete the wp-signup.php…

    – Using a captcha on my registration page (register.php)

    – I installed the hashcash plugin with signup-protection activated

    – deleted the register-page in BBpress

    – added the .htaccess lines

    – (and by the way added a couple domains to block in WPMU backend – but still the same domains get through

    Is there really no way out?

    danf-1
    Participant

    Yep – I will ask on wpmu as well.

    But what about the buddybar question? I’ve read about how people implemented it in bbpress – but that still is in the same wordpress environment.

    What about getting the buddybar on an application external to wpmu?

    Can I set up a page template for a page that just spits out the buddybar html – then include that on my external subdomain either as a php include or as an iframe??

    #52295
    nandopax
    Participant

    One problem more with the forum:

    My original bbPress installation was in the forums folder (http://voiceover-casting.com/forums), the same of the slug used by buddypress.

    Fix to make the bbPress run:

    1) Before to configure it in buddypress, enter in bbPress admin and change the url to (http://yoursite.com/forum)

    2) After, enter in your FTP and change the directory name “forums” to “forum”

    3) Configure buddypress in “Forums setup” and will work.

    4) If you want delete the old bbPress instalation you can do that, you WILL NEED leave only the “bb-config.php” file in the “forum” folder

    #52283

    In reply to: BBpress.org

    gerikg
    Participant

    [deleted] it’s up!

    #52282
    gerikg
    Participant

    is it still happening? can you email me the wp-config and bb-config files but take out your db login info?

    #52259

    In reply to: BBpress.org

    Paul Wong-Gibbs
    Keymaster

    Don’t know, I’ve just sent a twitter to http://twitter.com/sambauers to ask him.

    #52246
    Paul Wong-Gibbs
    Keymaster

    I’m assuming you mean BuddyPress, as opposed to bbPress which is the forum component.

    Yes, comments posted on existing blogs on the WPMU installation will appear in the BuddyPress activity feeds. Make an account on http://testbp.org and have a play

    #52243

    In reply to: Fighting Splogs

    Michael Berra
    Participant

    I did – I just deleted the register-page in bbpress (I read that should do it…)

    Jason Giedymin
    Participant

    Patches Recap (Project SSL):

    https://trac.mu.wordpress.org/ticket/1111

    https://trac.mu.wordpress.org/ticket/1107

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

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

    https://trac.buddypress.org/ticket/979

    A lot depends on 1111 and 1107.

    It introduces ‘force_ssl_content’ and I think everything under the sun can use it.

    If 1111 goes through you might as well add ‘Securing Buddypress’ to the roadmap, let R-A-Y, the gang and myself loose on this task.

    #52228
    Greg
    Participant

    http://youlookfab.com

    WordPress blog since 2006, bbPress forum added in 2008, and now a BuddyPress community. To start with we’re only using extended profiles and private messaging, but will layer in additional features over time.

    Very grateful for the powerful platform that Andy and team have created, and for the great support offered by Burt, JJJ, Jeff and all the others on the forum.

    #52219
    pxlgirl
    Participant

    Yes, I have that one.

    #52210
    Paul Wong-Gibbs
    Keymaster

    As I read your post, you have an old forum you want “into” BuddyPress. BP or WordPress MU aren’t forums. BuddyPress’ forum components are provided by BBPress.

    If you want to import things differently, you need to write your post in more detail and even then I doubt there’s any easy solution

    #52202
    gerikg
    Participant

    do you have define( 'BB_NONCE_KEY', ?

    Jason Giedymin
    Participant

    Added an additional patch and Function for MU.

    Would be nice if we could have it…

    Will be used for BP as a filter, as shown in trac notes.

    Patches Recap (Project SSL):

    [new] https://trac.mu.wordpress.org/ticket/1111

    https://trac.mu.wordpress.org/ticket/1107

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

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

    #52196
    diego r.
    Participant

    So even after you integrate bbpress you still have to manually get the authors to show up?

    #52192
    pxlgirl
    Participant

    gerikg, I’ve done that, the cookiehash is in wp-config.php only.

    #52191
    gerikg
    Participant

    take out cookiehash from bb-config.php just leave it in wp-config

    #52188
    benjancewicz
    Participant

    Thanks, r-a-y. I hope Yuku is nice to me…

    Sorry, DJPaul. My goal is to import it into BuddyPress, but I didn’t know if perhaps there was some kind of import plugin like there are for importing other blogs into WordPress.

    I don’t know what bbPress is either, but I’ll look it up.

    Thanks!

    #52179
    pxlgirl
    Participant

    Are you talking about these ones…

    define( 'BB_AUTH_KEY', 'a85018... or these?

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

    Both taken from my bb-config.php.

    P. S. forgot to say, I got the 2nd part in my wp-config.php too, with this line above it:

    define( 'COOKIEHASH', 'c9ablaaaaah.' );

    pxlgirl.

    #52178
    Jason Giedymin
    Participant

    I don’t know what happened to my post, it became unreadable.

    You need the hashes, cookie domains, cookie hashes, etc…

    There are tons of posts on bbpress.org that you’ll be able to use.

    Also, don’t forget about the integration plug-in. It will help you out.

    #52177
    pxlgirl
    Participant

    BBpress 1.0.3, WPMU 2.8.4a, BP 1.0.3.

    So if my intergration won’t work, what should I do next? AFAIK it needs all these keys and I took those I had on my wp-config.php. I’ve done a few things after that, I need to find that tutorial again. ;)

    pxlgirl.

    #52174
    Jimmy B.
    Participant

    I’ve gotten WordPressMU installed (2.8.4a) and bbPress (1.0.2) installed. When you create a group the forum is creating in bbPress. I can post a topic on the bbPress side and it’ll show up in BuddyPress. When I try creating a new topic or replying to a topic I get that dreaded – “There was an error posting that topic” message.

    I’ve made sure I enabled XMLRPC and Pingbacks in bbPress and added that line to my bbPress config. I also use that XMLRPC testing plugin and it returns normal data so it can connect to bbPress via XMLRPC.

    Are there any other troubleshooting steps I can take or any ideas of what I might be missing?

    #52171

    In reply to: Fighting Splogs

    r-a-y
    Keymaster

    You also have to secure your bbPress install from spam signups (if you have forums installed).

    Things you’d want to do is disable registrations in bbPress and redirect attempted signups to WPMU’s signup page.

Viewing 25 results - 5,851 through 5,875 (of 7,457 total)
Skip to toolbar