Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 7,501 through 7,525 (of 7,560 total)
  • Author
    Search Results
  • #34338
    Burt Adsit
    Participant

    And also $this->options

    array(4) { [“target_uri”]=> string(37) “http://ourcommoninterest.org/bbpress/” [“username”]=> string(4) “bpbb” [“password”]=> string(6) “xxx” [“always_use_auth”]=> bool(false) }

    no the password is not ‘xxx’ and yes it is correct.

    #34335
    Andy Peatling
    Keymaster

    Please uncomment line 462 of bp-forums-bbpress-live.php

    //var_dump( $client->message, $client->error ); die;

    Then try and view or post in the forums.

    Can you then paste when you get in here (minus anything sensitive)

    Thanks

    #34333
    Burt Adsit
    Participant

    I think that what we are experiencing here is an apache phenomenon.

    We can’t all be setting this up improperly. Besides, I’ve got it working on a windows dev server just fine. It’s running the same vers of all 3 software components. bp, bb, mu. Same.

    I’m telling you people that when I dig down in the bowels of the code the reason that things are failing is wp_remote_get(‘your_very_own_url_to_bbpress’). It’s returning 404 and nothing happens after that. Well, things happen happily along as usual but everything above that just can’t work without that ‘pingback uri’ that it is looking for.

    So why is a valid url for the bbpress root returning 404? Apache and it’s wonderful .htaccess files control that response. If following it’s internal .htaccess rules that exist in the mu root and the bbpress root, if it decides that what you are requesting doesn’t exist, then it just plain doesn’t. To apache. Returns 404.

    I don’t know how anyone else has bbpress installed but mine is like so:

    mu root = myhappydomain.org/

    bbpress root = myhappydomain.org/bbpress/

    The .htaccess conditions and rules in mu dir get processed first. Then the ones in the bbpress dir get looked at.

    HANGON: gotta run go do something but i’m hitting ‘save’ first. brb

    #34329
    gogoplata
    Participant

    Same here bebopcool, I’m running the new bbPress zip and the trunk WPMU and BuddyPress and have successfully integrated users but can’t get the cookies to work, which I assume is what’s preventing the forum from working. I too have the forum on the group page, but posting on fails.

    I can login with my admin account and the new bbpress admin and post directly to the forum but it doesn’t seem to be communicating with BuddyPress.

    #34328
    bebopcool
    Participant

    bdpress trunk 658

    wpmu trunk 1574

    bbpress : alpha 3

    burtadsit thanks for the info about .hataccess file in bbpress it is ok now for user profile

    i gave the admin status to the buddypress forum user

    and o also upgraded to bbpress alpha 3

    but still not working : the forum is created but i cannot post

    it seems i have a pb with cookie integration because a user logged with bdpress is not automatically logged in bbpress but i do not see where….

    it tried to post with the bdpress forum user and logged manually with the same user in bbpress but it is still not working

    #34327
    gogoplata
    Participant

    Good luck! Still no success for me and I’ve tried just about everything I can think of. If I can’t get it working soon I’m going to start with a fresh copy of bbPress again and hope for better results.

    #34325
    Burt Adsit
    Participant

    I’m off to try this again. The SVN logs show that the bbpress guys have been busy.

    #34321
    bearuser
    Member

    oh, and forum is at http://campaignmessage.com/bbpress/topic.php?id=5

    there you can see the user is correct……..it is just the avatar that isn’t.

    #34320
    bearuser
    Member

    Mine is now posting. (still some issues with user avatars.)

    Don’t know what did it except the new bbpress trunk, and then creating a new group.

    http://campaignmessage.com (look at group “user switching”)

    #34319
    gogoplata
    Participant

    I’ve been working on this all morning but haven’t had much luck so far using trunk WPMU and the new zip bbPress. I have the users integrated between WPMU and bbPress but can’t get the cookies/SSO to work. Anyone else get it setup yet?

    #34318
    gogoplata
    Participant

    As Andy said they might, it looks like the bbPress team has bumped it up to Alpha 3 and updated the zip.

    #34312
    net3s
    Participant

    It works with the last bbPress trunk and backpress.

    #34307
    bearuser
    Member

    I keep getting a “backpress” error when trying to intall trunk bbpress.

    #34306
    gogoplata
    Participant

    I’ve been trying to install bbPress using the trunk but I can’t get it to work at all – the forums just load white/blank instead of the installer. I’ve installed and integrated the 1.0 Alpha zip no problem but have had no luck with the latest revision, including manually.

    #34305
    Andy Peatling
    Keymaster

    Okay – are people downloading the alpha zip of bbPress form bbpress.org?

    If so – it will not work, as it does not contain some needed new functions in the trunk.

    I’m talking with Sam and he is going to update the zip file to the latest. For now – please check out bbpress trunk for subversion and use that. Let me know if that works.

    #34303
    Burt Adsit
    Participant

    @wardeh, bearuser

    I’m having the same problems. The forums aren’t getting created because bp tries to go verify and get an url to use from bbpress. bbpress is reporting 404 for me when bp (actually mu) tries to get that url from bbpress. It’s the url in group forums admin screen.

    On a dev machine I’ve got running everything works fine. On the live server it doesn’t because of that. Still trying to debug it. If anyone wants to lend a different perspective the failure is in:

    function discover_pingback_server_uri($url, $deprecated = 2048) {

    $pingback_str_dquote = 'rel="pingback"';

    $pingback_str_squote = 'rel='pingback'';

    /** @todo Should use Filter Extension or custom preg_match instead. */

    $parsed_url = parse_url($url);

    if ( ! isset( $parsed_url ) ) // Not an URL. This should never happen.

    return false;

    $response = wp_remote_get( $url, array( 'timeout' => 2, 'httpversion' => '1.1' ) );

    if ( is_wp_error( $response ) )

    return false;

    if ( isset( $response ) )

    return $response;

    // Not an (x)html, sgml, or xml page, no use going further.

    if ( isset( $response ) && preg_match('#(image|audio|video|model)/#is', $response) )

    return false;

    $contents = $response;

    [snip] and other junk beyond that…

    That lives in /wp-includes/comment.php

    The param $url is fine. It’s what is in the group forums admin screen. The point of failure is when it gets a $response back from wp_remote_get(). It gets 404. So functions higher up the food chain that eventually call this think that there isn’t a ‘pingback server uri’. So nothing happens. No forum creation. No forum, no topics. No nothing.

    That’s as far as I’ve gotten with this. Usually explaining it makes it clearer but not this time. Gotta go delve into bbpress and see why it’s returning 404 for a simple ‘gimme the header and your html for the url where you live’.

    #34299
    Burt Adsit
    Participant

    wardeh and others,

    there is a little link to an .htaccess file you need to put in the bbpress directory. In bbpress settings > general settings > pretty permalink types you’ll see a notice that you need to create a .htaccess file with a link to ‘privided here’. Cut and paste, send it up to your bbpress root directory.

    bbpress needs a .htaccess file for apache if you are running permalinks and not the xxx.php?something type of url.

    #34297
    Wardee
    Participant

    Thank you! I will give this a try! (Well, after I get the forums to work.)

    #34295
    Andy Peatling
    Keymaster

    For people that it is not working for: Are you sure the new user you created in bbpress for BuddyPress to use has admin privileges in bbPress? Basically the account that you enter into site admin > group forums?

    #34294
    Arturo
    Participant

    all is possible :) but Andy in the readme say wpmu 2.7 or trunk and same for bbpress.

    p.s. Oh Nicola e tu anzicche’ chiedere qui chiedi su http://www.buddypress-it.it che e’ il sito di supporto italiano no?

    #34292
    Arturo
    Participant

    no, you can use the trunk of wpmu and the same of bbpress, or wait for the wpmu 2.7 and the beta of bbpress 1.0.

    #34291
    Wardee
    Participant

    bebopcool: “i cannot make the user created for buddypress in bbpress an admin as i cannot access to bbpres user profile (it gives a 404 error on every user imported from wordpress)”

    That’s what happens to me, too.

    The forums are with the groups now, but no posts can be added.

    #34288
    bebopcool
    Participant

    wpmu trak version 1574

    bbpress 1.0 alpha 2

    buddypress 658

    pb with cookie integration between bbpress and wordpress

    i cannot make the user created for buddypress in bbpress an admin as i cannot access to bbpres user profile

    (it gives a 404 error on every user imported from wordpress)

    it tried to use the bbpress integration function that allows to give a role to wordpress users :

    the new forumbdpress is put as an administrator in wpmu

    but he does not appear as an administrator is bbpress

    surely those pb are not directly linked with your plugin

    but it makes it working not properly :

    the groups forums seems to be created but

    i cannot create topics in groupes forums

    #34271
    net3s
    Participant

    When I create a group with forum, its creating a forum on http://ninofonline.be/bbpress/.

    But i can’t post a topic. (http://ninofonline.be/)

    #34266
    Burt Adsit
    Participant

    @zenseeker, ok here’s the mu trunk link:

    http://svn.automattic.com/wordpress-mu/trunk

    Balance? Balance?! What balance? Alphas, betas and trunks (all together now) Oh, My!

    I’m getting goofy. Gotta lay off the caffeine.

Viewing 25 results - 7,501 through 7,525 (of 7,560 total)
Skip to toolbar