Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 57,551 through 57,575 (of 64,398 total)
  • Author
    Search Results
  • #62225
    _ck_
    Participant

    An early beta is now available for review:

    https://bbpress.org/plugins/topic/bb-attachments/

    #64110
    _ck_
    Participant

    An early beta is now available for review:

    https://bbpress.org/plugins/topic/bb-attachments/

    #62511
    _ck_
    Participant

    An early beta is now available for review:

    https://bbpress.org/plugins/topic/bb-attachments/

    #3231
    fokjulle
    Member

    What is this, and how do I fix it?

    **************

    bbPress database error: [Illegal mix of collations (utf8_general_ci,COERCIBLE) and (latin1_swedish_ci,IMPLICIT) for operation ‘find_in_set’]

    SELECT user_id, meta_value FROM bb_usermeta WHERE meta_key = ‘favorites’ and FIND_IN_SET(‘3’, meta_value) > 0

    Warning: Cannot modify header information – headers already sent by (output started at /usr/www/users/trashm/forums/bb-includes/db-mysql.php:106) in /usr/www/users/trashm/forums/bb-includes/pluggable.php on line 224

    #64158
    refueled
    Member

    I’ve updated this theme. If you’ve been having registration issues, please download it again and replace the following files:

    login-form.php

    register.php

    register-success.php

    #64406
    chrishajer
    Participant

    I think you would probably want to edit the template files to include those blocks of code from your static page into bbPress, not the other way around. bbPress needs to do its thing, but you can edit the template files and include the sidebar and header into the bbPress pages.

    #3228
    freewaregeek
    Member

    Hi everyone, i want to know if is possible to integrate bbPress into static HTML webpage, if yes how ? Thanks in advance. To see an example :

    This is my site :

    http://freewaregeeks.com/

    This is what i’m trying to do :

    http://www.imagebin.eu/pics/6a0285a7c31bf34bd8522cae809fa74f.png

    #64403
    Sam Bauers
    Participant

    Feeds access the database just the same as page views, so there should be no delay in new posts/topics showing up in the feeds from bbPress.

    I don’t know how often RSS forward or similar services grab those feeds though.

    #3226
    jaydedman
    Member

    We came up with a hack for email notifications: http://showinabox.tv/forum so people can get an email when someone posts to a thread they are following.

    We are using RSS Forward.

    But it seems that our bbPress feed updates itself very slowly.

    Anyone know how often feeds refresh by default?

    #64369
    Ryan
    Participant

    You’re right, it’s the new user notification plugin that I had forgotten about downloading.

    #64402

    In reply to: BBPress Newbie

    dthomas31uk
    Member

    I am also developing my wordpress site locally….is it possible to do the same with BBPress.

    #64401

    In reply to: BBPress Newbie

    dthomas31uk
    Member

    Have just discovered the bbpress installer page….Its asking for Database Name etc. DO I HAVE TO CREATE A NEW DATABASE???

    #3225

    Topic: BBPress Newbie

    in forum Installation
    dthomas31uk
    Member

    Hi. Have just downloaded bbpress from this site. Uploaded it to my server……now what? It is not showing up in my wordpress admin plug in section. I presume I have to configure something somewhere….can anyone advise please. Do I need to create a new databse for bbpress or do i still use my existing wordpress database.

    #64400
    Sam Bauers
    Participant

    Avatar upload requires some editing of your templates to work properly AFAIK.

    It also may not be compatible with bbPress 0.9 – but I’m not sure about that.

    #64360
    citizenkeith
    Participant

    However, fel64’s “Page” plugin doesn’t work after activating this one:

    https://bbpress.org/forums/topic/go-to-last-post-in-topic

    #64359
    citizenkeith
    Participant

    glanceup: Just cut and paste it into a plugin template. Here’s what I did (apologies to _ck_ if the headers aren’t quite right):

    <?php

    /*

    Plugin Name: Fix Number of Front Page Topics

    Plugin URI: https://bbpress.org/forums/topic/how-to-restrict-number-of-latest-discussions-on-front-page

    Description: Fix Number of Front Page Topics

    Author: _ck_

    Author URI: http://bbshowcase.org/

    Version: 0.1

    */

    // fix number of front page topics
    function bb_custom_topic_limit($limit) {
    switch (bb_get_location()) :
    case 'front-page': $limit=5; break;
    case 'forum-page': $limit=10; break;
    case 'tag-page': break;
    case 'topic-page': $limit=15; break;
    case 'feed-page': break;
    case 'search-page': break;
    case 'profile-page': break;
    case 'favorites-page': break;
    case 'view-page': $limit=10; break;
    case 'stats-page': break;
    case 'login-page': break;
    default: $limit=15;
    endswitch;
    return $limit;
    }
    add_action( 'bb_get_option_page_topics', 'bb_custom_topic_limit',200);

    // required to fix for custom topic limits to calculate correct page jumps
    function fix_post_link ($link,$post_id) {
    global $topic;
    remove_action( 'bb_get_option_page_topics', 'bb_custom_topic_limit' );
    if ($topic && $topic->topic_last_post_id==$post_id) {
    $topic_id=$topic->topic_id;
    $page=get_page_number( $topic->topic_posts );
    } else {
    $bb_post = bb_get_post( get_post_id( $post_id ) );
    $topic_id=$bb_post->topic_id;
    $page = get_page_number( $bb_post->post_position );
    }
    return get_topic_link( $topic_id, $page ) . "#post-$post_id";
    }
    add_filter( 'get_post_link','fix_post_link',10, 2);

    ?>

    glanceup
    Member

    ck — Into what file and where do I paste that code? Thanks. PS I am using bbPress 9.0.1

    #58292
    glanceup
    Member

    bbPress v. 9.0.1 seems to choke on this–hang ups and crashes….

    #64279
    Sam Bauers
    Participant

    This would not impact anything other than bbPress, it’s just a question of choosing one methodology to support pretty URLs.

    MultiViews could still be enabled on the server, it’s just a question of whether bbPress uses it or not.

    Mod_Rewrite is better for a couple of reasons. For a start it is better supported, and it is also a lot more flexible. We are thinking about running all requests through a single page (index.php) just like WordPress. This is called a front controller, and is not as easily achieved with MultiViews.

    There is also the desire to reduce the amount of support traffic around this topic and standardising on one approach may help that.

    #62843
    citizenkeith
    Participant
    #3224
    txmom
    Member

    I have wp and bbpress integrated, fresh installation.

    To use avatars is it better to use a wordpress plugin? I tried avator upload, but no avators, nor upload links in profiles. Admin tab is there.

    I’d like to be able to use the private message thing, will it work with the 2 integrated?

    Thanks.

    #64278
    psheerin
    Member

    Can you clarify the impact of disabling MultiViews? Will this impact only bbPress content on a site, or do you need it turned off for the whole site?

    I like to mix WordPress, bbPress, and plain content for some images, PDF manual downloads, etc., and really need content negotiation/MultiViews supported in directories outside of WP/bbPress.

    And why is Mod_Rewrite better than MultiViews for bbPress?

    #64007
    Sam Bauers
    Participant

    @ blackidlabs

    I think a new release of WPMU is imminent. You might want to hold off until it is released, or you can simply follow the same integration steps as for WP2.3 (installing required compatibility plugins)

    If you have any issues, then ask here.

    #62497
    Sam Bauers
    Participant

    I’m putting my money where my mouth is, and donated $50 to _ck_ towards the development of this plugin.

    Thanks for starting this _ck_, it will be a welcome plugin addition.

    #64108
    Sam Bauers
    Participant

    I’m sure that many people have fine justifications for wanting file attachments. It just seems to be coincidence that those people aren’t the ones capable of writing it. No one is telling anyone that their need for it is “wrong”.

    Can I suggest that those who want it somehow co-ordinate their efforts and – rather than pointlessly bumping threads like this all the time – you all work out how you can get it happening in a constructive fashion. There are many competent plugin developers around, perhaps you can pool financial resources and hire one to write the plugin. Perhaps if you are in a University you can co-opt a student with the necessary skills to write the plugin for you in exchange for credit. I’m sure that together you work out a creative solution to your problem.

    I would love to see this happen, but I don’t think it will be me who writes it. Dealing with file uploads in web apps is hard and boring for me. I spent about 5 years of my life doing it, so whilst I am probably well qualified to take it on, I don’t *want* to right now. It’s not about some geek elitism. Clearly my want is greater than your collective powers of persuasion at this time.

    charlesstout’s topic on this issue has a much more positive spin to it, and you’ll notice that _ck_ has jumped in to get something rolling (which is lucky for you guys, she knows what she’s doing). I suggest that if _ck_ gets this happening you all go and drop some money in her donation account or at least send her a card.

Viewing 25 results - 57,551 through 57,575 (of 64,398 total)
Skip to toolbar