Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 5,751 through 5,775 (of 6,775 total)
  • Author
    Search Results
  • #15271

    Hey there,

    Currently running 0.9.4 of BBPress and the installation was from several months ago before the new update. However I would like to avoid having to update BBpress to the new version as mine is linked with Word Press. Would there be an issue if I upgraded BBPress with WP linked with it, without updating Word Press?

    Anyway, the forum was originally a different forum and alot of users lost their original usernames and it defaulted to their original username. The users want to be able to change their usernames back to what they were before without loosing all the posts linked to them. So is the only way to do that to upgrade BBPress? or go in manually and change it in the database?? There are alot of users that need their names changed.

    Thanks,

    Adam

    #15257
    johnhiler
    Member

    I’ve noticed that when I’m commenting on bbpress.org, there’s also a “tags” field.

    Does that allow me to tag the topic itself? Or just my individual post? Or maybe the goal is to encourage commenters to help tag the topic?

    Wondering if this is a new option or if it’s always been there but just off by default (it doesn’t show up on my 0.9 installs). I worry that it would be slightly confusing for new users… but thought I’d check what everyone else thought!

    #75742
    Ohna
    Member

    Curiously if I write the code in “functions.php” that break my login/logout/edit profile page and display a blank page. I have moved the code in “my-plugins” and no issue now.

    Thank you for your information and your patience _ck_, I will try to solve my last problem by my self.

    Edit: solved with :

    foreach ($results as $result){$list.=" ".bb_get_avatar($result->ID, 20, $default)."<a href='".bb_get_option('uri')."profile/".$result->user_login."'>".$result->user_login." </a>";}

    #75868

    Which version of bbPress are you using?

    If you have phpMyAdmin access, then open the usermeta table (should be bb_capabilities if you are not using shared user tables and should be wp_capabilities if you are using shared tables) and change the value of bb_capabilities to a:1:{s:9:"keymaster";b:1;} for your user.

    Hope that helps.

    P.S. – Change the default table prefixes as your case may be.

    #75740
    Ohna
    Member

    Hi,

    I want to add a link to the profile page:

    foreach ($results as $result){$list.=" <li class='list_b'>".bb_get_avatar($result->ID, 25, $default)."<a href='" .$result->user_profile_link. "'>".$result->user_login."</a></li> ";}

    I tried .$result->user_profile_link., but it doesn’t work, any idea ?

    #75736
    Ohna
    Member

    Thank’s _CK_ !!

    But, your code doesn’t seem to work in bbPress 1.0 (I tried to add it in functions.php or directly in topic.php).

    However I have no problem if I add your code in bbPress 9.0 theme.

    I want to add ” <?php echo bb_get_avatar( $poster_id->ID, $size , $default); ?> ” in your code, but I can not ?

    #75789
    johnhiler
    Member

    Try activating the default Kakumei theme and deleting a tag, just to be sure?

    If that doesn’t work, it could be a bug with v 1.0… in which case, please post the report to trac!

    #75787
    johnhiler
    Member

    Someone reported a similar issue:

    https://bbpress.org/forums/topic/bbpress-10-released#post-37903

    Apparently some themes use AJAX to delete tags… those are now broken I think?

    If you use a default theme like Kakumei, can you delete the tag?

    #75769

    John,

    I do not have a WordPress install attached to bbpress. The upgrade went smoothly except for one error that said I already had forums. Other than that, everything seemed to work fine except for the registration. For registration, I am using the plugins “approve user registration”, “terms of service”, and “human test”, but I had deactivated all of these prior to upgrade and then again when testing the default theme.

    #75766
    johnhiler
    Member

    Just to be sure, try a fresh copy of the default theme and see if it works?

    #75764
    Sam Bauers
    Participant

    Is this the case with the default theme?

    #75407
    Sam Bauers
    Participant

    “her worries would have continued for some time if she did have [a Gravatar]. She’d have been desperately trying to remember every single site she’d put her email on to see whether her picture appeared there”

    Actually, if all the sites where her avatar appeared used Gravatar, she would only have to worry about changing one image on gravatar.com and the new avatar (or lack thereof) would then be used on all those sites. Gravatar helps alleviate the situation you describe, not make it worse.

    In any case I think it would be wrong to pimp Gravatar in the actual default theme. As it exists right now, having Gravatar in the core actually helps people who want to add their own avatar solution by supplying the core replaceable function and the calls to it in the rest of the code. By replacing that one function, a plugin author can remove Gravatar altogether and replace it with something else. Another bonus for me and everyone who volunteers support time is that by using Gravatar we avoid all the issues associated with supporting file uploads in the core.

    I still believe that Gravatar should be supported by default in the core, but I think it would be inappropriate to push what is effectively advertising for the service to the front end (in the default theme) and force people to make modifications to remove it. That’s not the idea of having it there at all.

    #75611
    Gautam
    Member

    Click advanced settings and check if the host name there (default: localhost) is correct.

    #75642
    ovizii
    Participant

    well I don’t seee anything double on your profile page, but my test forum I linked above still shows double stuff. I tried the default theme, same problem, then I disabled the only plugin that was active adn the problem still persiststs…

    besides that, there are only 2 test posts there made by me as key master and every now and then, it shows my user as inactive, if I do a refresh, it shows key master behind my name, go to another post and its inactive again :-(

    #75636
    chrishajer
    Participant

    I see both of them twice. Since I haven’t seen that elsewhere, I am going to guess it’s something in your theme or a plugin. Try with the default theme and see if it still happens. If it does, try disabling plugins one at a time until the problem disappears.

    #15202
    deadlyhifi
    Participant

    Just testing version 1.0 before my big upgrade and notice that duplicate user email addresses are allowed to be used with no error or warning. Therefore allowing more than one account with the same email address.

    Is this the default or have I done something wrong?

    #15201
    toomasr
    Member

    I installed the 1.0 release today and my custom theme stopped working. It worked with the previous releases.

    I tracked this down to: bb-includes/functions.bb-core.php:1783 to the line if ( preg_match( ‘/^([a-z0-9_-]+)#([a-z0-9_-]+)$/i’, $theme, $_matches ) ) {

    My theme name was zt2.0 meaning that the user#zt2.0 did not match and the directory BB_DEFAULT_THEME_DIR was used instead of the theme’s directory.

    I just renamed my theme not to include the dot in it. I guess it would be more friendly with theme names when just to check the user# or core# prefix without limiting the chars available

    #15190
    ArnyVee
    Member

    Hello there,

    I’m a complete newb when it comes to bbPress, so bear with me. :)

    I’ve installed about 6 to 8 of ck’s great plugins and they’ve all worked with no issues on the latest release (think it was on July 3rd when it was released or something?) of bbPress. Now, I understand that ck has warned everyone about the possibility of the plugins not working on 1.0, but I was wondering if anyone has these working or what I might be able to do to temporarily tweak them.

    All of the plugins, except for BBCode Buttons and BBPress Smilies are working. These two are not showing up in the default theme. Any suggestions on what I might’ve missed or something that I should do to see why they’re not working?

    BBCode Buttons

    I have the bbcode-lite plugin active and working, so it’s not an issue there. I have bbcode-buttons directly in the my-plugins directory, so seems fine there.

    BBPress Smilies

    I uploaded the full bb-smilies directory to the my-plugins directory and then activated it in the admin panel. But, nothing is showing in the post boxes.

    So, I could use some suggestions for those of you that found some work arounds. Thank you!

    #75436
    _ck_
    Participant

    MDA tried to put in code that prevented malformed image tags. Since bbPress uses raw html and not bbcode by default, it’s always something to consider. However you can run a minimal plugin to allow any and all images quite easily:

    add_filter( 'bb_allowed_tags', 'allow_images_allowed_tags' );
    function allow_images_allowed_tags( $tags ) {$tags['img'] = array('src' => array(), 'title' => array(), 'alt' => array()); return $tags; }

    That’s all that’s needed to permit the image tag.

    #75392
    oakad
    Member

    It appears, that the “admin” issue is also SSL related.

    In admin.php:8 bb_auth is called with implied, default scheme “auth”.

    However, later on in functions.bb-pluggable.php:145, the following code is encountered:

    if ( is_ssl() ) {

    $scheme = ‘secure_auth’;

    } else {

    $scheme = ‘auth’;

    }

    Which, given that is_ssl() returns true, will make the validation fail and user bounced out of admin page.

    For now, I replaced ‘secure_auth’ with ‘auth’ in ssl branch as well, which appears to be a reasonable hack for me.

    #75350

    In reply to: bbPress 1.0 released

    Proposed Patch for integration plugin:

    function bbpress_integration_set_bb_cookies( $uri, $expire = false, $expiration = ”, $user_id = ” )

    {

    if ( !$uri_parsed = @parse_url( $uri ) ) {

    return false;

    }

    $secure = false; //Default no auth

    if ( force_ssl_login() || force_ssl_admin() )

    {

    $secure = true; //Will create secure flagged cookies

    }

    (I’m still going through my debug)

    #75478

    In reply to: theme without table ?

    Ryan Hellyer
    Participant

    Creating a theme without a table is easy enough, just remove the tables from the theme. However the question you need to ask is “why?”.

    The default phpBB3 theme ProSilver uses a table-less layout and instead use definition lists to achieve a ‘table-like’ look, but most HTML/accessibility experts consider this to be an abuse of definition lists and do not recommend it. Tables are for tabular data and most people consider things like a board index to be in fact tabular, hence tables are typically used.

    #75475

    In reply to: theme without table ?

    It is possible to make a theme that does not use tables. bbPress is very flexible with themes. I am not aware if there exists one though…

    But it uses tables by default because the list of topics and forums is in fact tabular data. I think it has nothing to do with table-based web-design of the 90’s (if that’s your concern).

    #75400
    Ryan Hellyer
    Participant

    I can see why Automattic would want the gravatar service integrated directly into the software, it ensures people actually use the service.

    Can’t you edit the template files to put the Gravatar instructions in there for your installation?

    I think grassrootsspa is suggesting something for the core download, I don’t think this is a request for their own site as that would obviously just be a simple addition to the template files.

    I think this is something which should probably be added to the default theme. Many users don’t find it obvious what a gravatar is and so go hunting for an avatar uploader, if there isn’t one then they’re bound to get confused. Adding some default text in the profile along with a link back to gravatar.com would make a lot of sense to me. It would also ensure that themers remembered to include the text in their own themes.

    #73616

    Here is the latest integration rundown. I first lay out some helpful hints to those out there looking for them, and toward the bottom I point out something which the integration plug-in does not properly handle. That is the HTTPS secure cookie upon logging out. Depending on your setup this may cause issues. Most of the time you’ll be ok. If your like us and have added a proprietary layer of security for internal use only, you like to make sure when your secure cookies expire they expire asap and are completely gone.

    I recommend maybe, just a suggestion as I’m not privy to the dev’s stream of intentions to query if ‘BB_FORCE_SSL_xxx…’ is set. This is probably a much better indication of scheme than relying on the database option only. I know your busy Sam and that wpmu integration is like the last thing on your list. However, some of the code base is already merging.

    Noteables: Step #6, Step #7

    But before you continue:

    1.) Disable Your Cache Server (Varnish/Squid). Go straight to your webserver (Eliminate other causes.)

    2.) Get Integration working on plain http first. DO NOT define any force SSL/Admin anywhere on either wpmu/wp/bbpress.

    3.) Go back and integrate if you can’t get #2 done. Some helpful hints that work:

    3a.) Install wp/wpmu

    3b.) Install bbpress

    3c.) Install integration plugin for wp. In the option where it says complete URL, that means “http://mysite.com&#8221; and not “mysite.com”. If your _only_ (meaning 100% of the time) ever going to use HTTPS then go ahead and define HTTPS.

    3d.) I made sure all key/salts were setup in wp first, and then mirrored them into bb-config prepending BB_ in front of each Define. I defined manually: AUTH_KEY, SECURE_AUTH_KEY, LOGGED_IN_KEY, NONCE_KEY, AUTH_SALT, LOGGED_IN_SALT, AND SECURE_AUTH_SALT (7 in total defines).

    Once you have HTTP squared away Proceed with SSL:

    4.) The integration plugin will try do some things for you in the backend, it will actually try to do all the cookie work for you. However it works off values you set via the integration option page and your wpmu site options.

    To take control of a few options, go ahead and define MANUALLY the following: (just as the plug-in suggests and more sometimes):

    COOKIEHASH, COOKIE_DOMAIN, SITECOOKIEPATH, and COOKIEPATH.

    5.) Add to wp-config.php:

    define(‘FORCE_SSL_LOGIN’, true);

    define(‘FORCE_SSL_ADMIN’, true);

    6.) Add to bb-config.php:

    define(‘BB_FORCE_SSL_USER_FORMS’, true);

    define(‘BB_FORCE_SSL_ADMIN’, true);

    7.) The kicker for me since I’m using MU Subdomains, i HAD to put into my bb-config:

    $bb->cookiedomain=’.mydomain.com’ //Yes, with the dot before the domain.

    (This is literally the only direct access object config I set in my PHP file. All the rest is handled by ‘DEFINE’ )

    Up to this point you should have integration with HTTP and HTTPS. Back and forth, forth and back, every which way. You should have it done without any manual speed up accessors. If it works, go ahead and add them but make sure you set them correctly. If your fanatical about security then cross the line, otherwise go get a beer, woman or pillow whatever.


    The Line


    8.) Log into BBpress. Goto your main blog, and wp will see you have a ‘logged_in’ cookie. Will display the site_admin link. Just go ahead and click log out.

    9.) Logging out will log you out, except a few cookies are left over. This is because the integration plug-in never inspects the HTTPS scheme properly. It will always look for HTTP. Test this by editing line 182 in the plugin file to read:

    $secure = true; //Don’t forget to change me back to false (default).

    10.) Repeat, and you’ll notice your cookies (the ones which matter) get blown away.

    Notes:

    – If you install WPMU 2.8 Alpha/Beta/Etc… you must _NOT_ enable

    define( ‘WP_AUTH_COOKIE_VERSION’, 1 )

    as the plugin suggests.

    – I DID NOT use any of the “speed up” manual configs which the bbpress integration tool points out. If you can’t get it working without these settings, adding them may not help at all and masks your real issue which is some other settings are screwed.

    – you NEED to make sure your URLs are correct. That means every single URL defined in your database in any meta table, options etc… Especially the case with the integration plugin.

Viewing 25 results - 5,751 through 5,775 (of 6,775 total)
Skip to toolbar