Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 51,201 through 51,225 (of 64,430 total)
  • Author
    Search Results
  • Sam Bauers
    Participant

    @johnbillion

    You might want to upgrade that further to the latest trunk, RC2 has some issues.

    #74297
    Sam Bauers
    Participant

    and several more queries per page when generating the same content

    I’m working on fixing that now where possible.

    #74296
    _ck_
    Participant

    You can get a 25% speed boost or more by running 0.9 instead of 1.0 depending on how many simultaneous connections you are serving.

    1.0 uses 50% more code and several more queries per page when generating the same content.

    #73607
    ITguy
    Member

    John, first please enjoy your vacation. As to your question, yes I do use ‘deep integration’. I have deleted the 3 groups I had that would not allow the recreation of the forums via the toggling of the ‘Enable discussion forum’ option. That was my only remaining problem. I was able to recreate the groups from scratch and transferred the topics and posting db entries from my backup. Everything is now working :-)

    I did a quick search through the BuddyPress forums about the issue you mention but have not found it. I will do it again over the weekend. Should I find it I will try any suggested fix by setting up another copy my setup (code and database) saved this morning before I deleted the problem group forums. I have a spare domain I can use just for that purpose. Should you find it please feel free to post the URL here.

    Thanks again for all your help, hopefully I can help you with identifying the issue you referring to for your screen casts.

    #74644

    In reply to: logout error message

    mcmc
    Member

    the logout issue disappeared after deactivating simple onlinelist.

    just saw that 0.9.0.5 is available, I think I was using 0.9.0.4 or 3, I just upgraded now to 0.9.0.5.

    the message “You’re already logged in, why do you need to register?” still appears when I do the sequence mentioned ( login to bbpress, go back to investorsbuzz.com and then again back to the forum, and click register instead of login), but unless there is a quick fix to keep you logged in, it’s ok

    I assume simple online-list will be fixed eventually? or did I not install properly?

    Thanks!

    #15013
    annejan
    Member

    I read almost every topic about language problems in bbPress, but I didn’t get an answer on my questions.

    – I downloaded some language files (german, arabic, dutch) and put them into bb-includes/languages

    – After that I edit in my bb-config.php file “define(‘BB_LANG’, ”);” to “define(‘BB_LANG’, ‘nl_NL’);”

    – And I installed the bb-language-switcher and activate it.

    Only the last point works well, but if I select a language in the dropdown menu (for example dutch), the language don’t change.

    What am I doing wrong? I would appreciate any help.

    #74643

    In reply to: logout error message

    chrishajer
    Participant

    Sounds like you were using a plugin, Simple Online List:

    https://bbpress.org/plugins/topic/simple-onlinelist/

    If so, what version of bbPress are you using?

    If you disable that plugin, does the error go away?

    #15011
    Silvanovicz
    Member

    Hi guys, with the first beta out in a few days/weeks, I’m planning to upgrade my 0.9 install to 1.0 when it becomes available. Does anyone know if I can just use the upgrade instructions below, or if there are any things i should look out for?

    http://bbpress.org/documentation/upgrading/

    #73606

    ITguy, are you using deep integration? If so, I think there’s something else that needs to be done before the group forum creation will work.

    I ran into the same issue as you a few months back. Burt’s XMLRPC check would work, but forums wouldn’t get made. If memory serves me right, the XMLRPC was reincluding something that was mucking up the forum creation, but I don’t recall exactly what that is at the moment, but I banged my head against it for a week, and there’s a topic somewhere in the BuddyPress forums to prove it. :)

    I’m packing for a week long vacation tonight, and am flying all day tomorrow. I’ll have my laptop and access to all my code by Wednesday night, and will be back to help support this again. In the meantime I invite you to scour buddypress.org/forums and see if you can find any of my past replies or recent topics. Check from about April or so. Getting this figured out is important to me too, as I’ve got a series of Integration screen casts I’m going to put together and give to the *Press sites to help answer all of the questions everyone has about integration, since it is a very popular topic and many of us spend many hours developing and supporting it.

    Talk soon, and good luck until then.

    John Blackbourn
    Participant

    Thanks for the compliments!

    @sambauers: I’ve fixed the login integration by updating bbPress to RC2 (it was still on an alpha) and all is well again. Thanks for all your hard work on bbPress. Much appreciated.

    #74575
    John Blackbourn
    Participant

    @Michael3185:

    The user profile fields are simply items in a PHP array. You can remove an item from the array to remove the profile field, or add a new item to the array to add a new profile field.

    <?php

    /*
    Plugin Name: My Profile Fields
    Description: My profile fields for my lovely forums
    Version 1.0
    */

    function my_profile_fields( $fields ) {
    /* This removes the Occupation profile field: */
    unset( $fields['occ'] );
    /* This adds a new optional field called Favourite Band: */
    $fields['faveband'] = array(0,'Favourite Band');
    /* This adds a new *required* field called State: */
    $fields['state'] = array(1,'State');
    /* You must return the array at the end of the function: */
    return $fields;
    }

    add_filter( 'get_profile_info_keys', 'my_profile_fields' );

    ?>

    Save the code above as a .php file and upload it to your my-plugins directory (you may need to create this directory in the root of your forums installation) and then activate it from the Plugins menu in the bbPress admin area.

    Edit: Code updated as a complete example of a plugin.

    #15010
    #74409

    Inching forward.

    When I share tables, the default role of the admin of forums has a subscriber role in capabilities, thats why the admin access is lost.

    Right, but WHY does that happen to you when it doesn’t to everyone else (that I’ve heard of) who sets up bbPress/WordPress the way you described :) It’s weird and I wonder what happened. It’s not the different wp_/bb_ prefixes, I’ve tested that.

    #74408

    Yes! It was pretty weird problem. It didn’t work when I copy pasted the string from my blog post but when I did from console (value from another integrated copy), it did the job.

    They were not messed up. When I share tables, the default role of the admin of forums has a subscriber role in capabilities, thats why the admin access is lost. May be we are again going in circles now :/

    #73548
    _ck_
    Participant

    Fairly certain bb-attachments is no longer working with the newest 1.0 releases

    (neither is bb-topic-views apparently)

    Remember if you use any of my major plugins like bb-attachments or bb-polls they do not work under RC1 or RC2 and will not be supported for months, so do not upgrade from bbPress 0.9 if those plugins are important to you.

    #74629
    Markus Pezold
    Participant

    Hi onelove,

    i think this must be the right “startingpoint” for you:

    https://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release

    I’ve converted a phpBB 2 to phpBB 3 to bbPress 0.9.4 Forum three weeks ago. The converter works great for me. But the best way is on a local pc (XAMPP, WAMP, LAMP) which some backups.

    A colleague from me wrote a little script with some regular expressions to clean up the topics and posts. eg. for the old phpBB <quote>-Tag and the smilies. Maybe I can upload this script temporary.

    Also i hope i have some time to write an “how to” for the user reverse user integration in WordPress after the conversion from phpBB3. On Mysteria3000 (http://www.mysteria3000.de) we have 50 authors and about 150 users in the forum.

    #74295

    @ashfame I didn’t say they couldn’t, I said they didn’t. I chose that word on purpose :)

    The way that WP-Super-Cache was originally written, logged in users DO NOT get cached pages. Now I understand that Donncha added in a toggle to turn that option on and off recently, but I’ve not used it and I’m not sure exactly what that does.

    As for ‘why’ logged in users don’t get cached pages (historically), well, Donncha says this:

    If you’re logged in or have left a comment you’ll never see a super-cached page. You’ll see plain old regular WP-Cached pages instead. That’s not so bad since a huge majority of your visitors will never leave a comment.

    #74407

    We’re going in circles. And yes, I know it’s working know.

    My question is this: WHY were your xx_capabilities and xx_usermeta messed up in the first place? There’s no reason I can think of that the setup you described (install WP, configure. Install bb, configure. Integrate bb and WP) should have whacked those settings. :) You see why I’m confused?

    #74294

    @Ipstenu

    Why logged in users can’t have cached pages? (This is what I am not able to understand)

    #74406

    Ok. But in my case I was using custom table prefixes, so instead of editing the plugin I directly run a sql query :)

    Problem is solved now!

    Thanks for your help!

    #74405

    ash, I was talking about the exact same plugin you were. Read the very first post on the plugin page.

    This plugin is only meant as a simple way to fix roles for users doing reverse integration of bbPress with WordPress without having to resort to using phpMyAdmin but it may have other uses if a primary admin role gets corrupted or wiped out for some reason.

    So really, unless your admin role is being wiped out somehow, this shouldn’t be needed in the situation you describe.

    #74612

    We can see out of the box integration in upcoming releases but that can be done even now although it requires much of manual work.

    You can integrate WP + bbPress as per my guide : http://blog.ashfame.com/2009/05/integrate-bbpress-forum-with-your-wordpress-setup/

    and using both the registration page wont be a problem but you can redirect it to one if you want. There was a plugin for it, I guess else it can be done manually too.

    #73605
    ITguy
    Member

    @chrishajer, not sure where the original instruction about the need for ‘$bb->bb_xmlrpc_allow_user_switching = true; ‘ came from, besides seeing it referenced in all BB and ppB integration instructions, I came across it first on the BuddyPress.org site’s ‘Installing and setting up bp-forums’ article (step 11). The URL is <https://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt&gt;.

    #74627
    onel0ve
    Member

    I dnt kn0w much about db .Is there any script?

    #73604
    ITguy
    Member

    John, XML-RPC is (was) turned on in both WPMU/BP and bbP. Also ‘$bb->bb_xmlrpc_allow_user_switching = true;’ is (and always was) at the end of the bb-config file just before the closing PHP statement. I even check again that XML-RPC was working properly via Burt’s XML-RPC-sayhello plugin.

    Sam, taking your note ‘about re-applying the role map does not change the roles users already have’, I applied John’s suggestion to ‘purge the bb_capabilities and apply the role map once everything is lined up’.

    The end result is the same, user switching works, admin has the correct bb_capabilities in the wp_usermeta table (no need this time for manual correction), and all users can create new groups with forums, add topics and relies to all discussions. The ONLY thing still not working is the recreation (activation) of old exiting groups with forums that exited before upgrading from BP 1.0 to 1,0,1 and bbP 1.0-Alpha-6 to 1.0-RC2.

    I guess I have to delete them and create them as new groups. I should be able to export the topics and replies first and import them after the creation, unless one of you has another suggestion. Regardless, thanks to both of you for all the help so far.

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