Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 51,326 through 51,350 (of 64,430 total)
  • Author
    Search Results
  • #67855
    chromestory
    Member

    I’ve downloaded a plugin and now testing it ..

    #74481
    Vizworld
    Member

    Ok, I fixed it.. Kinda.. It’s a nasty fix, but it _does_ work (I’m using it on http://www.Vizworld.com now).

    A quick cliffnotes version:

    Took 2 main changes.. a) I had to update the validate_auth function in the _freshly_Baked_cookies plugin to make it work with the new password-including authentication. b) I had to modify the bb-include/pluggable.php to use the new algorithms for salting & auth (wp_salt and wp_auth). The ones that ship with bbpress don’t pass a Schema around, and apparently it’s important now.

    If you want the two files, you can download them from http://www.yeraze.com/bbpress-wp2.8-fbc_fix.tgz . i really hope _ck_ can take a look at this and see if it can all be encapsulated within the fbc plugin.. As it is now, soon as I upgrade bbpress I’ll lose it again.

    johnhiler
    Member
    amistad
    Member

    Hi, i’m looking for a plugin, that can integrate comments on my wordpress width post in my bbpress. First what I need. When I add a new article ( post ) on my blog, I would like that plugin will automate create a topic on the same title on the bbpress forum. I seen something like that before, but I can’t find that …

    It will be nice, if that plugin will also create post on that topic, if someone add a comment to the article on a wordpress blog, maybe it can work in other way too, when someone add post to topic on forum , a plugin will automatically add comment to blog.

    Thanks for all help.

    #74497
    johnhiler
    Member

    Sweet, glad it’s working now! :-)

    #74496
    michael3185
    Member

    Yay – genius! Many thanks. Hope the topic is of use to another as well.

    #74495
    johnhiler
    Member

    Your database is still storing variables pointing to talkspirit.letsdoo.org… so your header area is still pointing to talkspirit URL’s.

    Check out this call to your css file:

    <link rel=”stylesheet” href=”http://talkspirit.letsdoo.org/my-templates/bbVanilla/style.css&#8221; type=”text/css” />

    Here’s the code that generates that (in my header.php at least):

    <link rel=”stylesheet” href=”<?php bb_stylesheet_uri(); ?>” type=”text/css” />

    You should be able to fix this using phpmyadmin. Try running this query to find the row you need to change:

    SELECT * FROM bb_topicmeta WHERE meta_key=’uri’

    Then edit the row so that the meta_value for that row is the url for your new site…

    #74494
    michael3185
    Member

    No worries. It was talkspirit.letsdoo.org but I didn’t like it much, so it’s now http://talkzen.letsdoo.org

    I’ve checked the sub-domain, which is pointing to talkzen, and the old talkspirit one is deleted via cPanel. That was all done perhaps 4 or 5 hours ago, so shouldn’t be a server filter-through issue.

    Thanks for taking the time.

    #74493
    johnhiler
    Member

    What is your bbPress Address set to now?

    And do you mind posting a link to your forum, to help with troubleshooting?

    #74492
    michael3185
    Member

    Just tried that, but it jumps to http://abc.dom.com and shows a cPanel page with;

    Great Success !

    Apache is working on your cPanel® and WHM™ Server

    ???

    #74491
    johnhiler
    Member

    My login.php form posts to the following url:

    <form method=”post” action=”<?php bb_option(‘uri’); ?>bb-login.php”>

    Did you change your bbPress Address here?

    http://xyz.dom.com/bb-admin/options-general.php

    #14969
    #74230

    Think of this as a reference post we’ll go back to, in order to get information to make a tubularly cool super sexy bbPress Codex magnifique!

    Sorry, it’s been a day.

    #74480
    johnhiler
    Member

    Ah yah Vizworld, I think you nailed it.

    I took a look at ck’s original plugin and it mentions support for WordPress 2.8 (as of 3/13/09):

    https://bbpress.org/plugins/topic/freshly-baked-cookies/

    But this post (from 4/3/2009) on ck’s blog points out that WordPress 2.8 changed their login model:

    http://ckon.wordpress.com/2009/04/03/wordpress-28-might-break-login-compatibility-again/

    Sounds like WordPress may have changed it after the Freshly Baked Cookies plugin was released, breaking the FBC plugin?

    #74229
    johnhiler
    Member

    Yah, the codex will be a wiki with lots of information. We’ll list all the functions and try to make it easier for plugin/theme developers to learn the ropes!

    #14967
    Ohna
    Member

    Hi all,

    In “bbPress 9.0.5” I used a custom function to display author avatar outside the topic.php, I try the same function on bbPress 1.0 rc 2 and no longer works, can you help me?

    Custom function:

    function topic_author_avatar( $size = '50', $default = '', $post_id = 0 ) {
    if ( ! bb_get_option('avatars_show') )
    return false;

    $author_id = get_topic_author();
    if ( $link = get_user_link( $author_id ) ) {
    echo '<a href="' . attribute_escape( $link ) . '">' . bb_get_avatar( $author_id, $size, $default ) . '</a>';
    } else {
    echo bb_get_avatar( $author_id, $size, $default );
    }
    }

    #74467

    In reply to: smf 2.0 to bbpress

    radioinsight
    Participant

    Dave,

    I recently converted from FudForum to bbPress by way of SMF and PHPbb.

    Convert the board from SMF to PHPbb and then to bbPress. Worked like a charm.

    #74228
    massbase
    Member

    I hope this codex isnt going to be just a really long forum post.

    I hope the codex lists all bbpress functions, like wordpresses so’s we can build our own themes and stuff.

    #74478
    Vizworld
    Member

    Ok.. I’m not 100% on this, but it seems the cookie hashing algorithm changed in WP2.8 .

    In WP2.7, in wp-includes/pluggable.php (line 512)

    if ( $expired < time() ) {

    do_action('auth_cookie_expired', $cookie_elements);

    return false;

    }

    $key = wp_hash($username . ‘|’ . $expiration, $scheme);

    $hash = hash_hmac(‘md5’, $username . ‘|’ . $expiration, $key);

    and in 2.8:

    // Quick check to see if an honest cookie has expired

    if ( $expired < time() ) {

    do_action('auth_cookie_expired', $cookie_elements);

    return false;

    }

    $user = get_userdatabylogin($username);

    if ( ! $user ) {

    do_action(‘auth_cookie_bad_username’, $cookie_elements);

    return false;

    }

    $pass_frag = substr($user->user_pass, 8, 4);

    $key = wp_hash($username . $pass_frag . ‘|’ . $expiration, $scheme);

    $hash = hash_hmac(‘md5’, $username . ‘|’ . $expiration, $key);

    So, in 2.8 the hash is salted with 4 character’s of the USer’s password. The “freshly_baked_cookies” plugin hasn’t been upgraded to match this change, so it always fails to match the hashed cookies.

    Unfortunateyl,the get_userdatabylogin function doesn’t seem to exist in bbpress…..

    #74404

    Pretty weird! Instead of copy-paste from the browser, I copy-paste it from another integrated setup and it worked!

    #74403

    Integration is pretty well. I have just lost access to bbPress admin panel and can’t get it back.

    #74402

    I am talking about the “Fix Admin Access” plugin and you probably are talking of something else.

    #74401

    ashframe, even the admin plugin says it’s supposed to be for when you do reverse integration. Which is why I’m asking why you think you need it in the first place :) I totally get that you need to make the change manually due to your specific setup. I don’t get why the change is required in general for a bog standard WP + BB setup.

    bbPress shouldn’t be writing over the value in the DB. IIRC, it’s supposed to pull the WP values to create new BB values in the BB tables, once integration is setup in bbPress.

    Try it WITHOUT doing the muckity muck with the bb_capabilities, maybe?

    #74227
    #74477
    Vizworld
    Member

    I’m seeing something Similar on VizWorld.com. AFter upgrading WordPress to 2.8, I’m not unable to login to the Forums (www.vizworld.com/forum). I’m also using the “freshly baked cookies” 0.3.

    Upgrading to BBPress .9.0.5 hasn’t helped…

Viewing 25 results - 51,326 through 51,350 (of 64,430 total)
Skip to toolbar