Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,201 through 56,225 (of 64,066 total)
  • Author
    Search Results
  • #66272
    csseur3
    Member

    Hello,

    i think the design of the dashboard can be more beautiful.. and i think the little box we have before is more great (i speak about the home of dashboard).

    And for the plugins, can we have a system like WP 2.6? (with a button “desactive all” and chekboxes, etc…)

    And it is possible to have Google Gears in bbPress in future? :p

    bye ;)

    and thank you for the very good job!

    #55708
    csseur3
    Member

    hello, i have do that, and i have the buttons at the bottom of the textarea :/

    So, how to habe the buttons in top?

    And the code producted is <p>TEST</p> , how to fix that?

    bye,

    and i think it is great if the tinymce is integrated in bbpress, like an option for example :)

    #66316
    csseur3
    Member
    #3665
    csseur3
    Member

    Hello,

    i want to add at bbPress the 100% width in admin, like this plugin for wordpress:

    So, the code is:

    add_filter('tiny_mce_before_init', 'rmw_tinymce');

    function rmw_tinymce($init){

    $init = true;

    return $init;

    }

    add_action(‘admin_head’,’rmw_head’,99); //Hook late after all css has been done

    function rmw_head(){

    global $is_IE; ?>

    <style type=”text/css” media=”all”>

    .wrap,

    .updated,

    .error,

    .widefat,

    #the-comment-list td.comment {

    max-width: none !important;

    }

    <?php if( $is_IE ){ ?>

    * html #wpbody {

    _width: 99.9% !important;

    }

    <?php } ?>

    </style>

    <?php } ?>

    but not works for bbPress… what can i do for the plugin works?

    bye

    #66271
    csseur3
    Member

    yes, it works now, but the adress of the site is not show at the end of install :)

    bye

    #66299
    chrishajer
    Participant

    What role *exactly* do you want to give to multiple people?

    In the Admin section > Users, there is a drop down on each user’s “profile> edit” page where you can select the role for them. My installation shows:

    • Keymaster
    • Administrator
    • Moderator
    • Member
    • Inactive
    • Blocked

    There was also a plugin for forum-specific moderation and I’m not sure if it works with the latest release.

    https://bbpress.org/plugins/topic/forum-moderators/

    #66300
    chrishajer
    Participant

    I imagine it’s possible with a plugin.

    This would be pretty close.

    https://bbpress.org/plugins/topic/bb-moderation-hold/#post-245

    It holds the post for moderation. You could probably modify it to not hold for moderation, or if nothing else use the same filters and actions for your own plugin to just email on a new post or topic.

    #66251
    chrishajer
    Participant

    I suggest anyone trying to integrate bbPress with WordPress should read the sticky at the top of the forum.

    https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101

    It’s in there, very first post.

    #3660
    775251
    Inactive

    During step 3 of the installation process, I accidentally inputted the wrong URL for my forum.

    It asked me for the Site address (URL), which was defaulted to:

    http://mysite.com/wp-content/plugins/bbpress/

    I changed this to

    http://mysite.com/forums/

    Now I can’t access the forums at all, and I can’t figure out how to change the URL back. I looked at bb-config.php, but didn’t see any way to fix this.

    I’m not good with PHP and I’m new to WordPress in general, so any novice advice would be much appreciated!

    #3659
    _ck_
    Participant

    It’s definitely not ready for production use but the 1.0 alpha in the trunk is looking really good. Sam (and MDA) have been hard at work.

    Looks a great deal like WordPress behind the scenes – I mean the new 2.5-2.6 look with rounded everything – but in our familiar and sharp looking green.

    BackPress is now powering it which should unify us with WordPress more than ever before and accelerate feature development.

    Hey it’s got a dashboard like WordPress now!

    [screenshot]

    I also see they added Display Names to bbPress.

    [screenshot]

    This actually is to my dismay but I guess other people may like them. (Personally for me it will be the first thing I disable – nothing but trouble with pesky childish users).

    It also has categories built in: [screenshot]

    If you are a power user and know what you are doing, give it a try in a test environment – do NOT overwrite an existing install, it’s not stable yet. Sam says they could use some testing bug reports on TRAC for it.

    ps. even more good news is that many of my plugins seem to work hassle-free on it…

    #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

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