Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,576 through 56,600 (of 64,431 total)
  • Author
    Search Results
  • #66270
    _ck_
    Participant

    I’ve confirmed the newest trunk build now fixes this problem (at least for me)

    build # 1598

    #66269
    Sam Bauers
    Participant

    My guess is that you didn’t specify a charset collation for the database on install.

    I’ve just made a change that should fix your problem (if that was it).

    #66250
    775016
    Inactive

    I am very new to wordpress. I read your post late. Have not yet installed BBpress but plan to do so. How do I downgrade 2.6 to 2.5 I could not get any information on the web regarding steps for downgrade. Please help and thanks in advance. I am sure mor epeople would want to know the same as more people will find out 2.6 and bbpress dont work

    #66268
    _ck_
    Participant

    Er that’s the trunk and subject to being broken at times.

    I don’t recommend you go beyond the 0.9 branch:

    https://trac.bbpress.org/browser/branches/0.9

    or if you are using svn

    http://svn.automattic.com/bbpress/branches/0.9/

    #3658
    csseur3
    Member

    Hello,

    with the last installation of bbpress revision 1595, i have sql errors:

    SQL ERROR!

    >>> Database: forum_bbpress (localhost)

    >>>>>> CREATE TABLE IF NOT EXISTS bb_forums (

    forum_id int(10) NOT NULL auto_increment,

    forum_name varchar(150) NOT NULL default ”,

    forum_slug varchar(255) NOT NULL default ”,

    forum_desc text NOT NULL,

    forum_parent int(10) NOT NULL default 0,

    forum_order int(10) NOT NULL default 0,

    topics bigint(20) NOT NULL default 0,

    posts bigint(20) NOT NULL default 0,

    PRIMARY KEY (forum_id),

    KEY forum_slug (forum_slug)

    ) DEFAULT CHARACTER SET ‘utf8’ COLLATE ”;

    >>>>>> Unknown collation: ”

    SQL ERROR!

    >>> Database: forum_bbpress (localhost)

    >>>>>> CREATE TABLE IF NOT EXISTS bb_meta (

    meta_id bigint(20) NOT NULL auto_increment,

    object_type varchar(16) NOT NULL default ‘bb_option’,

    object_id bigint(20) NOT NULL default 0,

    meta_key varchar(255) default NULL,

    meta_value longtext default NULL,

    PRIMARY KEY (meta_id),

    KEY object_type__meta_key (object_type, meta_key),

    KEY object_type__object_id__meta_key (object_type, object_id, meta_key)

    ) DEFAULT CHARACTER SET ‘utf8’ COLLATE ”;

    >>>>>> Unknown collation: ”

    SQL ERROR!

    etc, etc…

    why?

    bye

    #66266
    _ck_
    Participant

    Oh wait, here’s the broken part in bb-settings.php

    do_action('bb_init', '');

    if ( bb_is_user_logged_in() && bb_has_broken_pass() )
    bb_block_current_user();

    I don’t see how a user could both be logged in AND have a broken password. If their password is broken, they can’t login.

    This might have broken during the radical password/cookie changes in >0.8

    I opened a TRAC ticket

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

    #66265
    _ck_
    Participant

    Block may never have worked like one would think.

    I think it just treats them like “bozo” status.

    It gives them the capability of “not_play_nice” = true

    hmm actually…

    function bb_block_current_user() {
    global $bbdb;
    if ( $id = bb_get_current_user_info( 'id' ) )
    bb_update_usermeta( $id, $bbdb->prefix . 'been_blocked', 1 ); // Just for logging.
    bb_die(__("You've been blocked. If you think a mistake has been made, contact this site's administrator."));
    }

    function bb_reset_password( $key ) {
    global $bbdb;
    $key = sanitize_user( $key );
    if ( empty( $key ) )
    bb_die(__('Key not found.'));
    if ( !$user_id = $bbdb->get_var( $bbdb->prepare( "SELECT user_id FROM $bbdb->usermeta WHERE meta_key = 'newpwdkey' AND meta_value = %s", $key ) ) )
    bb_die(__('Key not found.'));
    if ( $user = new BB_User( $user_id ) ) :
    if ( bb_has_broken_pass( $user->ID ) )
    bb_block_current_user();
    if ( !$user->has_cap( 'change_user_password', $user->ID ) )
    bb_die( __('You are not allowed to change your password.') );

    .

    According to all that, their password should be scrambled and they should be unable to reset it – so they can’t log in.

    But you can’t stop them from seeing the website.

    There’s no IP based blocking (yet) in bbPress.

    To really block an IP, you’d have to go into htaccess and add a “deny from” – at least for now.

    I guess someone could write a plugin to block the IP of blocked users, perhaps for 48 hours or so. Since bbPress doesn’t store the last login IP for users by default, this makes it difficult, the plugin would have to start storing IPs on every login.

    #66238

    In reply to: Cron?

    chrishajer
    Participant

    There used to be a plugin that was hooked to someone marking an item as a favorite: that was the only time it would run. If you wanted to run it manually, you just marked something a favorite. That was a random sort of way to run it occasionally.

    I think this was the plugin:

    http://boakes.org/download/bbpress_sitemap.txt

    #66263

    In reply to: Cannot create forum

    Göran
    Member

    Thank you very much chrishajer! It worked and I now have a forum on http://www.enkelwebbplats.se/forum

    I am writing a little book in Swedish on how to start a website with WordPress and include bbPress for a discussion forum. The major fault with bbPress is now that is does not work to use Swedish names with diacritic characters like my own, Göran. I have asked for help in this forum before but no solution seems to exist. Strange since many other languages also use such characters and most people are somewhat offended if they cannot use their name if they want. All suggestions how to solve this problem is highly appreciated!

    #66241
    Ben L.
    Member

    BuddyPress is a social networking addon for WPMU. It does not have a built-in forum, and it will not be replacing bbPress. Vanilla in this context just means plain.

    #65962
    chrishajer
    Participant

    You might want to start a new topic for that new topic, now that you have the subforums thing sorted.

    You situation sounds like this one from a while ago

    https://bbpress.org/forums/topic/how-do-i-do-this

    I am not sure what the best way to do it is. Did you try making the forums and subforums all in one forum installation, and see what the actual loading time is? That would be easiest for user login integration I think.

    Can you imagine updating 50 forum installations?

    #66247
    chrishajer
    Participant
    #66246
    _ck_
    Participant

    Their best bet is this:

    https://bbpress.org/forums/topic/trick-to-fix-some-email-problems-with-08x-plugins-on-09x#post-15776

    and to set it up using gmail for sending mail.

    #66260

    In reply to: Cannot create forum

    _ck_
    Participant

    This was discovered by someone else here:

    https://bbpress.org/forums/topic/getmypid-often-disabled-on-shared-hosting-systems

    Apparently getmypid is disabled on some hosts for security and your host may have turned it on suddenly or after an automated upgrade.

    #66257
    _ck_
    Participant

    Dollar sign might have to be urlencoded? Also you can integrate bbPress 0.9 with older versions of WordPress using these instructions:

    https://bbpress.org/forums/topic/how-to-integrate-bbpress-09-with-wordpress-23-or-lower

    #66256
    771868
    Inactive

    Correction: I’m using BBPress 0.8.3.1, and it seems to have allowed the dollar sign here. Hmm…

    #3655
    771868
    Inactive

    Hello,

    I have a problem with links like this:

    http://www.forestry.gov.uk/PDF/fcpn9.pdf/$FILE/fcpn9.pdf

    In case it’s been stripped out here as well, there ought to be a dollar sign before FILE. It’s in the db, so it’s being taken out on output.

    I’m probably being a bit simple, but I couldn’t find the code that was doing this – I’d guess it’s something on the post_text filter.

    I’m using WordPress 0.8.3.1 with the bbPress integration and WordPress Integration plugins. I would upgrade, but I don’t want to use WordPress 2.5 yet.

    Thanks, Mike.

    #65961
    755628
    Inactive

    Hi! Thank you _ck_ and chrishajer. It works wonderfully now.

    I have a few more questions if you don’t mind:

    1. Is there any way to optimize bbPress for extremely large forums? My forum will have 50 forums, followed by subforums for cities, followed by 5 subforums for each city. (I’ve thought it over through as well, and this is the best way to organize it)

    2. If there isn’t, is there a way I can create 50 forums that are different, one for each state, and have them running congruently? Would that alleviate the loading time and the strain on the database?

    3. Is there any way to have many separate forums that are sharing the same users table? They are going to be separate forums. I just want to have it so that 1) if one person is logged into one bbpress, they are also logged into another, and 2) if they are registered on one, they are also registered at another. Is there a way to do this?

    What would be the best way to handle this? It’s just that when I release the site, I want to have every section and everything up so that I don’t have to worry about expanding. I just want to do everything now (and having a lot of free time during the summer doesn’t hurt either!)

    Thanks.

    #3654
    #66245
    chrishajer
    Participant
    #65959
    chrishajer
    Participant

    I uploaded that code to a test installation I have and it appears to work fine. Check it out:

    http://riversideinfo.org/bbpress-0902/

    #65929

    In reply to: bbpress update soon?

    _ck_
    Participant

    Normally they advise against this because of potential database changes but you should literally be able to install 2.5.1 back over 2.6 – backups are always a must though.

    If you have an svn client installed this is as easy as a single command.

    769380
    Inactive

    Does this plugin available? I hope you may also include Swift Mailer. I can not put my bbpress on due to this problem. I’m just using a free hosting. Thanks

    #3653
    769380
    Inactive

    Is there a way that i may configure BBpress to use other smtp? My server does not support smtp. Please I need this ASAP

    724719
    Inactive

    can anyone please tell me is buddy press replacing bbPress? otherwise were wasting our time….

    “BuddyPress will transform a vanilla installation of WordPress MU into a social network platform.”

    vanilla is another forum, so im guessing BuddyPress will have its own forum… right so what the hell is bbPress for lol…

    anyone help here?

Viewing 25 results - 56,576 through 56,600 (of 64,431 total)
Skip to toolbar