Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 52,201 through 52,225 (of 64,428 total)
  • Author
    Search Results
  • #73134

    Yes, you need to have a SECRET_KEY defined and it has to match BB_SECRET_KEY. Comment out the other four keys in wp-config.php as they are not needed when the cookies are downgraded. You can visit https://api.wordpress.org/secret-key/1.0/ for a quick key generation.

    Good luck!

    #55817

    I’d suggest using this plugin instead:

    ttp://bbpress.org/plugins/topic/bbvideo/

    It works for bbPress 0.9.4 (except for the plugin admin page but that’s bearable). It is easy to add other video sources and even modify the RegEx that pulls the link so that videos are embedded with their own tag – [video=the_video_url] for example.

    #55816

    The Youtube plugin isn’t available for download anymore? The webpage you posted has changed. Where can I download it?

    #6629
    adv_user
    Member

    1) How to view the hot topics (with more messages)?

    2) In the list of forums and topics, such as identifying the last record of the page and add div class=”last”?

    3) In the list of recent topics, how show the forum this topic?

    Sorry if questions are very simple, but admit that the documentation of bbPress does not seem as complete as the documentation of the WP:

    http://bbpress.org/documentation/

    Thanks!

    #69990
    jfcarter
    Member

    Is this the most up to date code? I’ve tried to use it and I am getting no effect. No errors, nothing.

    Is there a specific location where the plugin should reside (besides bb-plugins) or does it need a specific name?

    Also, should the path just be the domain or something else?

    #73166
    chrishajer
    Participant

    It seems pretty clear that this table does not exist:

    saphruse_bbp01.wp_users

    Can you look at the database and see what tables are actually present there? Looks like bbPress is trying to use the wp_users table for integration, but it’s not present? Did you use the same database for WordPress and bbPress?

    #73165
    hruser
    Member

    Hi Chrishajer,

    http://forum.saphruser.com/ thats the link to my forum try giving userid as: admin and just try with any password

    you will see a error message on top left hand page, at the same time it says no user id exists, while thats the user id i got while signing up with bbpress.

    and yes i tried using Fix Admin plugin dint help. no i havent done anything mentioned in those two links u gave.

    pls help!

    #66153
    kswift
    Member

    So far the integration as explained in this topic has worked pretty well for me (WP2.7 and BBpress 0.9).

    Except for one issue. I have customized a WP template, and once I activate that template (with BBpress installed in a subdirectory to BBpress), the BBpress profile pages stopped working correctly:

    the link to a user profile does indeed end up at profile.php?ID=xx but instead of showing the user info, the page jumps into edit mode (as if trying to edit my own profile instead of viewing someone else’s). Also the submenu is no longer there.

    I don’t understand how the wordpress template should affect the way BBpress profiles are shown. Any clues?

    #73133
    deadtomorrow
    Member

    Thanks for the tip Dragunoff. I’ve installed the downgrade but it still doesn’t work. I think my problem is that I just don’t have a secret key. My keys look like this (I’ve taken out the actual keys):

    define(‘AUTH_KEY’, ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’);

    define(‘SECURE_AUTH_KEY’, ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’);

    define(‘LOGGED_IN_KEY’, ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’);

    define(‘NONCE_KEY’, ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’);

    define(‘BB_AUTH_KEY’, ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’);

    define(‘BB_SECURE_AUTH_KEY’, ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’);

    define(‘BB_LOGGED_IN_KEY’, ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’);

    define(‘BB_NONCE_KEY’, ‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx’);

    Do I need to add in the SECRET_KEY separately?

    #73150
    _ck_
    Participant

    The svn looks badly out of date for Italian

    http://svn.automattic.com/bbpress-i18n/it_IT/tags/

    so you if you want to link your results here and state which version it is for we’ll see if Sam or Michael can update the SVN…

    #6628
    racejunk
    Member

    Installed the Frshly baked cookies plugin.

    Have both able to share the database. A user created in either can be used in either. The issue is that if I log into WP fine. Then I go to BBPress and Have to Log in to it seperatly but it will then Log me off WP. If I then go and log into WP then it will log me off BBPress.

    To see it:

    http://newsedge.webjunk.com

    #73030

    _ck_, I looked into some things about regionality and I don’t think you’ll be able to get it much better than it is, unless you do as you mentioned, with the whois. Even then, it’s not going to be accurate 100%, since sometimes a server is in the US, but it runs a Brazillian site, etc. (And I’m still pissed at Google, a year later, from when I was in Japan and I went to google.com and it kicked me to google.jp, based on my IP, and ignoring everything else like the fact that my browser info showed I used English. At the time, I couldn’t get it to show the link to ‘Google in English’ and I was stuck in Japanese for a while.) Regions and localization are things that seem like a really good idea, but there’s no way to make it perfect, since you can never tell when someone’s abroad :/

    I like how you replaced “sticky” with a nifty little icon.

    Thanks! That was my first ‘hack’ for bbPress and I slapped this in my functions.php

    // This sets sticky label as an image
    remove_filter('bb_topic_labels', 'bb_sticky_label', 20);
    function my_sticky_label( $label ) {
    global $topic;
    if (is_front()) {
    if ( '2' === $topic->topic_sticky ) {
    return sprintf(__('<img src="/images/sticky.png" alt="[sticky]" /> %s'), $label);
    }
    } else {
    if ( '1' === $topic->topic_sticky || '2' === $topic->topic_sticky ) {
    return sprintf(__('<img src="/images/sticky.png" alt="[sticky]" /> %s'), $label);
    }
    }
    return $label;
    }
    add_filter('bb_topic_labels', 'my_sticky_label', 20);

    #73179
    _ck_
    Participant
    #57163
    possessed
    Member

    Hi,

    I’ve got the same problem, but with another host(Hosteurope).

    I solved it after I’ve asked my hoster. When sending an Email from my host, I need to add a -f parameter to the sendmail function.

    Doing so in BBPress you will need to add a valid (and known for the server) Email-adress in line 90 of your bbpress-root-folder/bb-includes/backpress/class.mailer.php file from

    /**

    * Sets the Sender email (Return-Path) of the message. If not empty,

    * will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.

    * @var string

    */

    var $Sender = '';

    to

    var $Sender = 'from@your-domain.com';

    I hope this might help some of you :)

    bb

    #73029
    _ck_
    Participant

    sa05admin, all the numbers were gathered in the first two weeks of April

    #73028
    sa05admin
    Member

    How upto date is the half a million posts and 100,000 users on the WordPress Support forums as described in the About pages – Can you give that statistic a date in time or keep it updated with a time of last update or even a pretty graph, please, pretty please.

    #72378
    brettbum
    Member

    I’m seeing this same problem in WordPress all by itself. Don’t think this is a BBpress problem but a WordPress problem. Don’t see anyone that seems to have a handle on it yet. :(

    #66152
    racejunk
    Member

    Not sure if anyone is reading this but it looks like wordpress and BBPress are using different ashes. I tried putting the actual hash in the Freshly_baked_cookies.php but it did not help as in: (the Real Hash is different)

    define(‘COOKIEHASH’, ’16bc2175035323b2cf11e36e21a0ea32′);

    Anyone have suggestions? Anyone reading this?

    #66432

    In reply to: bbSync

    chrishajer
    Participant

    It does not work at all with the alpha versions, and I think it was not working well with the 0.9* versions.

    https://bbpress.org/forums/topic/bbsync-broken-plugin-like-it-bb-10#post-18577

    #73164
    chrishajer
    Participant

    Also, you don’t log in directly at bb-login.php like you can with wp-admin. You need to enter your login details in the front page of your forum, and if you are keymaster (or administrator or moderator), you will be shown the Admin link next to your name and that’s how you get to the back end. If you don’t have the Admin link then you’re not logged in as keymaster.

    #73163
    chrishajer
    Participant

    Did you use something like one of these two solutions to integration the cookies with the two versions you installed? The cookies are incompatible otherwise.

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

    http://superann.com/2009/02/26/wordpress-26-27-bbpress-09-cookie-integration-plugin/

    #6616
    saint-1
    Member

    looking to match my wordpress to my bbpress.

    #73157
    hpguru
    Member
    hruser
    Member

    Hi All,

    Havnt seen any tutorials before doing integration, i guess thats the blunder i did..hence this problem.

    Problem: Cant login to bbpress admin, after WP integration, get message that User doesnt exist. However i CAN login to my WP admin without problems.

    Versions

    WP :2.7.1

    BBpress :0.9.0.4

    What i did: from bbpress integrate wordpress section i filled out following only, nothing esle

    1. Gave my WP url

    2. Gave my WP blog url

    3. Gave my WP secret key

    4. Gave the WP table prefix as: wp –

    thats all dint do anything else. and i UPDATED these details.

    Immediately got logged out. and now cannot login to forum.mysite.com/bb-login.php (bbpress forum is in subdomain)

    What else i did: i generated new password thinking its a password issue. No luck

    Also installed Fix Admin plugin in Plugin folder of WP from Cpanel, as soon as i installed it took me to login page of BBPress, and i tried logging in, No Luck. User doesnt exist message.

    Error seen on left hand TOP side of bbpress login page when login fails:

    bbPress database error: [Table ‘saphruse_bbp01.wp_users’ doesn’t exist]

    SELECT ID FROM wp_users WHERE user_login = ‘admin’

    bbPress database error: [Table ‘saphruse_bbp01.wp_users’ doesn’t exist]

    SELECT * FROM wp_users WHERE user_login = ‘admin’

    Please help.

    Thanks a mill.

    #6614
    saint-1
    Member

    here is my site its a forum about haunted house construction and how-to halloween props. well kind of, i just opened it like 5 days ago, 1 member haha.

    http://www.frightmarestudios.com/bbpress

    im really digging the stock theme so im sticking with that. i still need a little slogan/description. but the bbpress one works for now. ha.

    nothing fancy.

Viewing 25 results - 52,201 through 52,225 (of 64,428 total)
Skip to toolbar