Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 57,701 through 57,725 (of 64,450 total)
  • Author
    Search Results
  • #60336
    JaneLitte
    Member

    Where can I download futurekind?

    #64249

    In reply to: Change Gravatar Size?

    citizenkeith
    Participant

    Thanks Rune. I actually don’t like to hack admin files… Wyvn’s suggestion did the trick. I just made note of the change so I can do it again when I upgrade next.

    Maybe you can submit that for a future version of bbPress. :-)

    #63461
    lookfab
    Member

    I have spent the last couple of hours on the forums trying to figure out how to actually do this when the existing blog and forum are currently seperate databases.

    My situation is as follows:

    – wordpress 2.3 blog with no users (except admin)

    – bbpress 0.8 forum with many users

    I want to get to a wordpress 2.5 blog and a bbpress 0.9 forum with an integrated database.

    I think the steps are:

    1. upgrade wordpress to 2.5

    2. upgrade bbpress to 0.9

    3. then?…. how do I combine the database?

    Or can I keep the seperate databases and still get the benefits of combined cookies and users carried from wp to bb and vice versa? If so, how do I bootstrap the wp database with the existing bb users?

    Any help out there?

    #64248

    In reply to: Change Gravatar Size?

    Bloggsbe
    Member

    Well, if you like to hack you admin files, you can add the following code to the options-general.php file just after line 143, making this code start on line 144;

    <label for="avatars_size">
    <?php _e('Gravatar Size:'); ?>
    </label>
    <div>
    <select name="avatars_size" id="avatars_size">
    <?php
    $selected = array();
    $selected[bb_get_option('avatars_size')] = ' selected="selected"';
    ?>
    <option value="16"<?php echo $selected[16]; ?>><?php _e('16 px'); ?></option>
    <option value="32"<?php echo $selected['32']; ?>><?php _e('32 px'); ?></option>
    <option value="36"<?php echo $selected['36']; ?>><?php _e('36 px'); ?></option>
    <option value="48"<?php echo $selected['48']; ?>><?php _e('48 px'); ?></option>
    <option value="80"<?php echo $selected['80']; ?>><?php _e('80 px'); ?></option>
    <?php
    unset($selected);
    ?>
    </select>
    </div>

    And in the bb-includes/template-functions.php file, after line 1198 you can add this;

    $size = bb_get_option('avatars_size');

    Then you can change the size in the admin section, and the correct size will show with the posts.

    Or you can download the edited files here

    Rune

    #63656
    _ck_
    Participant

    This is a tricky problem.

    It’s easy to remove the ability entirely to post new topics for all forums (by removing the ability from the “member” role) but to keep a forum visible but not allow a new topic to be created would require intercepting the forum list from the “add new post” sections.

    If you can live with not allowing any member to create a new topic you can do this:

    https://bbpress.org/forums/topic/only-key-holders-add-topics#post-15339

    Then only moderators and above could create topics.

    This request comes up at least once a month, someone might try to tackle it someday (but don’t look at me!)

    #63142
    _ck_
    Participant

    There used to be a plugin to do this:

    https://bbpress.org/plugins/topic/usernames-i18n-fix/

    but it won’t work under 0.9 – instead see this:

    https://bbpress.org/forums/topic/diacritic-letters-i-username-like-goran#post-14205

    #64052
    _ck_
    Participant

    Unlike WordPress I don’t believe bbPress has an easy way to do role management (yet). There is a privilege built-in for bb_current_user_can( 'write_topics' ) which means it is technically possible to control who can start topics by taking away that role privilege from the “member” role.

    In theory a small plugin should be able to do this – I’ll take a look at how it might be done as an exercise in learning more about bbPress roles…

    #64213
    Sam Bauers
    Participant

    Just set up the “user role map” in the “WordPress integration” section of the bbPress admin area.

    #64240
    _ck_
    Participant

    It seems fixed now but almost sounds like you are running separate user tables when they should both be pointing to the user table in WordPress? Are you certain you have the correct setup in bbPress pointing to WordPress?

    And I assume that’s WP 2.5 with bbPress 0.9?

    ps. be sure to check out the alternative Kakumei Blue theme (in bbPress 0.9) to match your WP’s blue colors…

    #64220
    _ck_
    Participant

    Sounds interesting but:

    Fatal error: Call to undefined function: bb_option() in wp-content/plugins/bbpress-admin/bbpress-options-admin.php on line 38

    Is this for people who has bbPress running INSIDE WordPress, instead of just stand-alone integration?

    #64260
    _ck_
    Participant

    This is the plugin to do exactly what you want:

    https://bbpress.org/plugins/topic/restrict-registration-for-bbpress/#post-173

    You might also want to add my “Human Text” plugin to help stop bot (automated) registrations:

    https://bbpress.org/plugins/topic/human-test

    #3191
    Ryan
    Participant

    The first two user registrations I’ve had on my new forum are both using @mail.ru email addresses. Experience with other forums tells me these are probably spam registrations. On the SMF forums I admin I block @mail.ru email addresses from being able to register at all. Is there a way to do this in bbPress? Maybe have them default to Inactive or Blocked depending on the email address used?

    #57037

    In reply to: Template integration

    patrace
    Member

    I’d like to see bbPress replace commenting in Word Press. Ideally it would just embed as a plugin and look the same as the current commenting but then the comments could be viewed and managed as a forum.

    If bbPress was designed to easily embed as a commenting system it wouldn’t have to just be used in WordPress either. I’m currently trying to implement something along these lines where bbPress functions as the comment system on a website so people can comment on our short films through the forum or directly on the website. Each comic/film/whatever will be tied to a separate topic ID and pull related comments. Hopefully it works because I like the way it looks in my head.

    #64265
    raygene
    Member

    OK, solved for the moment but I had to reset the forum’s permalinks to default, which I had originally set to “Name-based”.

    Unless there’s a fix for this, I don’t mind using the standard “ugly” permalinks.

    Gene

    #3192
    raygene
    Member

    LOL!

    Just installed bbPress into my WP 2.5 blog (sub-folder) and using the same database.

    For some strange reason, when I click on a forum link, it takes me to my blog with a “page not found error”.

    Gene

    #64257
    chrishajer
    Participant

    WordPress is thinking this forum page does not exist., so WordPress throws the 404 but the page is still properly served. It happens only because you’ve included blog-header.php (a normal integrated installation wouldn’t do this).

    I think this post covers it (basically, install a WordPress plugin to overcome the problem):

    https://bbpress.org/forums/topic/bbpress-wordpress-mu-or-not-leads-to-404-errors-but-pages-still-load#post-13156

    #64245
    chrishajer
    Participant

    Spend a while reading current posts in this forum; it’s your best bet for being prepared. Other than that, it’s pretty straightforward. With integration, be sure you have the same secret key from wp-config.php in your bb-config.php. It’s pretty straightforward.

    #64244
    raygene
    Member

    Thanks,

    I uploaded bbPress to a WP sub-folder and will use the same database (backed everything up), before I proceed in installing the forum, any tips so I don’t run into problems?

    Cheers,

    Gene

    #64029
    affacat
    Member

    to better illustrate my issue, my current code for the profile page is:

    if ( avatarupload_get_avatar(ID) ) {

    avatarupload_display($user->ID);

    } else {

    echo bb_get_avatar( $user->ID );

    }

    which means if uploaded avatar exists then display it, else get gravatar.

    but what i really want is:

    if uploaded avatar exists then display it, else if gravatar exists then display that, but if neither exists then display the avatar upload default avatar.

    Right now it displays gravatar default instead. which isn’t my first choice since avatar upload would give me control over the default image which is better for obvious reasons.

    #64121
    chrishajer
    Participant

    I saw something about a PHP function checkdnsrr being disabled in the latest build. That function is used in the bbPress function bb_verify_email.

    I think the problem is that checkdnsrr is not available on Windows, and I’m not sure if it’s available on XAMPP. Here is how they fixed it in the latest trunk build:

    https://trac.bbpress.org/browser/trunk/bb-includes/registration-functions.php

    Here is the original bug report:

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

    #64243
    chrishajer
    Participant

    1. Use the same database if you want to integrate registrations.

    2. Yes. Call the folder whatever you want.

    3. Not sure. There was a post here at one point that mentioned directing all the registrations through WordPress since the registration plugins were more robust, but I can’t find it now.

    #3189
    Ryan
    Participant

    I’m calling the blog-header.php file from WordPress, which from what I’ve read is part of the problem. I’m doing so because I’m using the same sidebars, header, and footer in my forum as the blog. If there’s another, relatively easy, way to do that then I’m all ears.

    When using permalinks for the bbPress pages a 404 header is being returned. The page displays ok in Firefox & IE7, but the 404 is going to cause issues with search engines.

    Any suggestions on how to fix the problem?

    #64028
    affacat
    Member

    OK, so it looks like the plugin version 0.8.3 still works in bbPress 0.9.1 – though I have not yet put it through heavy testing. I found the install directions left a little to be desired so I added more detailed directions below.

    However… I still have a question. Some of my users have adopted Gravatars since WP 2.5 was released. The plugin currently does not seem to check for gravatar existence, let alone provide some sort of control over precedence of different sourced avatars.

    The installation instructions DO provide you with the function to call to see if a plug-in uploaded/created avatar exists. However, in order to get the precedence working the way I’d like, I need to know how to test for a Gravatar existence as well. Any ideas? Thanks in advance.

    Any ideas?

    Install instructions:

    1. Download Plugin here:

    https://bbpress.org/plugins/topic/avatar-upload/

    Version 0.8.3 is current at time of this writing.

    2. Create the following two folders in your bbpress install:

    /my-plugins

    /avatars

    3. follow instructions (specifically, step 5) in the readme file which tells you where to copy files. Some files in the zip aren’t mentioned (such as indenticon.php). I put those into my-plugins and so far, so good.

    4. Activate plugin.

    #3188
    Bloggsbe
    Member

    You can get a Norwegian translation of 0.9.0.1 here.

    Norsk oversettelse av bbPress 0.9.0.1 kan du finne her.

    Rune

    #3163
    dka
    Member

    I’m trying to install bbPress on a local Intranet Server (Its on a local network for my employees to use for collaboration.) And I’m getting caught on Step 3. When i put in any email address it says that the Email Address “Appears to be invalid” and doesn’t let me continue, My main email ends in .co.uk which i thought might have been the problem but even .com and .info addresses dont work. Any ideas? (Using the latest version with XAMPP / Apache)

Viewing 25 results - 57,701 through 57,725 (of 64,450 total)
Skip to toolbar