Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,601 through 56,625 (of 64,450 total)
  • Author
    Search Results
  • #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?

    #65928

    In reply to: bbpress update soon?

    lelandf
    Member

    I wish I knew about the integration problem before I upgraded to 2.6. I’m experiencing more problems than the upgrade is worth. Like someone said above, 2.6 is not really anything special.

    Is there any surefire way of downgrading back to WordPress 2.5.1? I have backups but made a few posts since then and don’t want to lose them.

    #3651

    Topic: Cron?

    Ben L.
    Member

    Is there any form or pseudo-cron in bbPress?

    #66215

    In reply to: Forum categories

    Ben L.
    Member

    http://llamaslayers.net/daily-llama/541/tech/bbpress-forum-categories/

    Here you go! I just finished it and submitted it for consideration for the bbPress plugin directory.

    #66212

    In reply to: Forum categories

    767427
    Inactive

    Here’s the thread that mentions categories in the trunk:

    https://bbpress.org/forums/topic/categories-in-0901

    And the old patch for 0.8

    https://bbpress.org/forums/topic/patch-categories-for-version-08/page/2

    I installed revision 1588 but until I resolve the URI error I can’t even view any pages to see how the categories and per-user permissions are coming along. I realize that using a bleeding edge revision in a production environment isn’t a good idea but if it’s stable enough I don’t think my users would really care as long as it doesn’t randomly self destruct.

    If there is a way to patch that functionality into the current release that would make my day, probably even my week.

    #3648
    767427
    Inactive

    I’ve decided to go with bbPress for my new website because of my love for WordPress because of the relative ease of user integration and it’s light weight. I have everything nailed down except that I’d like to customize my installation to show categories like other forum software, i.e.:

    Category

    +Forum

    +Forum

    +Forum

    Category

    +Forum

    +Forum

    +Forum

    You get the idea I’m sure. I’ve searched quite a bit and found only some posts from a year ago where this was brought up and supposedly this is in the trunk now. Has anyone managed to do this to a current stable installation or know how I could do it myself? It seems there used to be patches that did this for old revisions and I thought about playing with them to try to produce the desired effect on the current stable version. Has anyone else tried that?

    I figure one option I _could_ use is trying out the current trunk (which I have almost up and running, got it installed but have an error that says it cannot find the uri) but I worry about stability.

    I’d appreciate some tips and tricks if anyone has any. The lack of organization isn’t a deal breaker but it would be very nice. I don’t feel like waiting until version 1.0 which I know will be a long way off and I don’t want to try to cram together wordpress and another bloated beast of a forum like phpbb3.

    #64541
    RossB
    Member

    Sure, Chris – and thanks. The forum link is: https://ashb.proofreadercentral.com/bbpress/

    I’ve got it password protected at the moment, before it goes “public”.

    User: tester

    Password: testing123

    The main site I want to link to the home page of from the forum is password protected with the same user name and password, and the link is:

    http://www.ashb.proofreadercentral.com/

    Appreciate your help!

    Cheers

    Ross

Viewing 25 results - 56,601 through 56,625 (of 64,450 total)
Skip to toolbar