Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 39,376 through 39,400 (of 64,524 total)
  • Author
    Search Results
  • #99237
    1onely
    Member

    Merci but where’s the link download ?

    I don’t see It

    #104337
    1onely
    Member

    Merci but where’s the link download ?

    I don’t see It

    #99236

    If you want to move your WordPress data to a bbPress install, then you can use this http://code.google.com/p/wordpress-to-bbpress-converter/

    #104336

    If you want to move your WordPress data to a bbPress install, then you can use this http://code.google.com/p/wordpress-to-bbpress-converter/

    #37375
    1onely
    Member

    Hello

    I need import all topic and post from wordpress to bbpress

    Can i ? or not

    Thanks

    #99146
    _ck_
    Participant

    Some translations do not have all the phrases done. They may be from older versions of bbpress or the person who did it just didn’t bother.

    There may be a newer translation file or you may have to add the translations yourself.

    See my topic here about it all:

    http://bbshowcase.org/forums/topic/bbpress-translation-internationalization-into-local-languages

    #104246
    _ck_
    Participant

    Some translations do not have all the phrases done. They may be from older versions of bbpress or the person who did it just didn’t bother.

    There may be a newer translation file or you may have to add the translations yourself.

    See my topic here about it all:

    http://bbshowcase.org/forums/topic/bbpress-translation-internationalization-into-local-languages

    #37373
    Aeolius
    Member

    I signed up with netsol for a WordPress account. As such, they do not allow ftp access outside of WordPress. I installed the Myftp plug-in, but that only lets me upload files individually, instead of uploading folders.

    So what are my options, aside from individually uploading 200+ bbPress files one at a time, to get up bbPress from within WordPress?

    #54456

    In reply to: Add nofollow to links

    engin1984
    Participant

    @ant123

    https://bbpress.org/forums/topic/add-nofollow-to-links#post-74079

    works for me and

    https://bbpress.org/forums/topic/nofollow#post-58232 is work for me too (bbsignatures)

    and all links is nofollow now. Thanks

    #99145
    Lightheaded
    Member

    I have resolved the problem. All I did was specify the MO file name in WPML settings. Didn’t know they were related..

    -edit- Nope, not resolved afterall. It appears that the localization file is grabbed from [wp-dir]/wp-content/languages, not the bbpress loc. file. And some strings remain untranslated, like posts count, RSS feed links and freshness times..

    #104245
    Lightheaded
    Member

    I have resolved the problem. All I did was specify the MO file name in WPML settings. Didn’t know they were related..

    -edit- Nope, not resolved afterall. It appears that the localization file is grabbed from [wp-dir]/wp-content/languages, not the bbpress loc. file. And some strings remain untranslated, like posts count, RSS feed links and freshness times..

    #37334
    Lightheaded
    Member

    Hello!

    I’m trying to get BBPress to run in my language, but as of now I’m stuck.. Here’s what I did:

    1. Download the .mo file from here: http://svn.automattic.com/bbpress-i18n/et_EE/branches/0.9/

    2. Upload it (et_EE.po) to bbpress-root-dir/my-languages

    3. Edit out the “define( ‘BB_LANG’, ‘et_EE’ );” line.

    4. Expect it to work.

    Point 4. seems to be the problem in my case, because the expected result doesn’t match the reality..

    The bbpress site in question: http://lightheaded.eu/bethelp/forum/

    (Sorry for the foreign language)

    I’m using the default Kakumei template with deep integration.

    _ck_
    Participant

    Okay I had never written the special routine for “topics to which each user has replied” so it never even appeared in the last 0.9 although Sam incorporated some of my other improved queries.

    But I sat down and wrote it just for you now :-)

    http://bbshowcase.org/plugins/fast-recount.zip

    Basically the old 0.9 bbPress api loops through each and every user and does a few queries for each one, completely overloading any server and timing out and never finishing.

    ie. 6 queries per user x 1000 users = 6000 queries !!!!

    My version accomplishes the exact same results with only a handful of queries right inside the mysql engine regardless of how many users, so it should always finish in under 30 seconds (unless perhaps it’s millions of users)

    Once you install and activate, under your recount menu you will see (among others)

    FAST RECOUNT topics to which each user has replied

    So check that box and leave the old one unchecked.

    Until I have some time to fix the order in which the boxes appear, you should probably do the fast recount AFTER the other regular counts are done.

    Oh and last but certainly not least, I highly recommend backing up your mysql database for wordpress/bbpress before using this plugin, because it’s experimental and does actually delete old data before creating the new data. Something could go wrong (in theory you could run it a second time to fix the problem but always best to be safe).

    ps. make sure you update bbpress to 0.9.0.6 too

    _ck_
    Participant

    Okay I had never written the special routine for “topics to which each user has replied” so it never even appeared in the last 0.9 although Sam incorporated some of my other improved queries.

    But I sat down and wrote it just for you now :-)

    http://bbshowcase.org/plugins/fast-recount.zip

    Basically the old 0.9 bbPress api loops through each and every user and does a few queries for each one, completely overloading any server and timing out and never finishing.

    ie. 6 queries per user x 1000 users = 6000 queries !!!!

    My version accomplishes the exact same results with only a handful of queries right inside the mysql engine regardless of how many users, so it should always finish in under 30 seconds (unless perhaps it’s millions of users)

    Once you install and activate, under your recount menu you will see (among others)

    FAST RECOUNT topics to which each user has replied

    So check that box and leave the old one unchecked.

    Until I have some time to fix the order in which the boxes appear, you should probably do the fast recount AFTER the other regular counts are done.

    Oh and last but certainly not least, I highly recommend backing up your mysql database for wordpress/bbpress before using this plugin, because it’s experimental and does actually delete old data before creating the new data. Something could go wrong (in theory you could run it a second time to fix the problem but always best to be safe).

    ps. make sure you update bbpress to 0.9.0.6 too

    _ck_
    Participant

    This may happen if you have a very large number of topics/posts/users.

    The functions in bbPress 0.9 are very inefficient and use a horrifying number of queries that will get blocked by many servers or timeout after 30 seconds.

    I wrote some experimental fast replacement routines, let me see if I can find them.

    _ck_
    Participant

    This may happen if you have a very large number of topics/posts/users.

    The functions in bbPress 0.9 are very inefficient and use a horrifying number of queries that will get blocked by many servers or timeout after 30 seconds.

    I wrote some experimental fast replacement routines, let me see if I can find them.

    #99170
    shawn2
    Member

    I have dropped my bb_ tables, removed bb_capabilities from _usermeta and deleted bb-config.php. I then reinstalled bbpress with integration settings. At the end of install I received the error Forum could not be created! I followed this advice: https://bbpress.org/forums/topic/forum-could-not-be-created and added a row to the forum table. When I try to login now I still receive the error “multiple user_login matches”

    Anyone? Help? Please :)!!!

    #104270
    shawn2
    Member

    I have dropped my bb_ tables, removed bb_capabilities from _usermeta and deleted bb-config.php. I then reinstalled bbpress with integration settings. At the end of install I received the error Forum could not be created! I followed this advice: https://bbpress.org/forums/topic/forum-could-not-be-created and added a row to the forum table. When I try to login now I still receive the error “multiple user_login matches”

    Anyone? Help? Please :)!!!

    #94917
    Rich Pedley
    Member

    if you unzipped it, you see that the actual plugin is within branches/plugin/ and that are the bits that need uploading, not the full directory structure (my bad should have mentioned that).

    The plugin needs theme files for it work.

    #69834
    d3rutat
    Member

    Thanks for this converter! I have managed to sucesfully convert a phpbb3.0.8 forum to a bbpress one, but one problem remains, how can i convert attachments as well?

    My forum heavily depends on people attaching images, migrating to bbpress and losing attachments is like losing half the fun.

    Any help?

    #94916
    Rob Bunch
    Member

    @Rich, thanks for the info.

    Do you have to do all that stuff before the plugin can be activated?

    I installed the latest branch successfully, however, when I tried to activate it, I got a WP_Error saying “The plugin does not have a valid header.”

    #96464

    In reply to: bbPress uses WP theme?

    naviathan
    Member

    I tried this too and ended up with some errors about BB_User which is apparently not implemented anymore for security reasons and no images or CSS as decas noted. Guess this plugin doesn’t work with bbpress 1.0+ and wp 3.0+

    #101564

    In reply to: bbPress uses WP theme?

    naviathan
    Member

    I tried this too and ended up with some errors about BB_User which is apparently not implemented anymore for security reasons and no images or CSS as decas noted. Guess this plugin doesn’t work with bbpress 1.0+ and wp 3.0+

    #98847
    koawinter
    Participant

    Raamdev, could you give a more detailed description on what you did to the salts and keys (or everything). I’m having issues getting this as well, and just tried a few things and am now kicked out for not even being a member (using the admin) saying “user does not exist”.

    #103947
    koawinter
    Participant

    Raamdev, could you give a more detailed description on what you did to the salts and keys (or everything). I’m having issues getting this as well, and just tried a few things and am now kicked out for not even being a member (using the admin) saying “user does not exist”.

Viewing 25 results - 39,376 through 39,400 (of 64,524 total)
Skip to toolbar