Search Results for 'bbpress'
-
AuthorSearch Results
-
February 6, 2011 at 2:40 pm #99237
In reply to: import all topic and post from wordpress to bbpress
1onely
MemberMerci but where’s the link download ?
I don’t see It
February 6, 2011 at 2:40 pm #104337In reply to: import all topic and post from wordpress to bbpress
1onely
MemberMerci but where’s the link download ?
I don’t see It
February 6, 2011 at 2:13 pm #99236In reply to: import all topic and post from wordpress to bbpress
Ashish Kumar (Ashfame)
ParticipantIf 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/
February 6, 2011 at 2:13 pm #104336In reply to: import all topic and post from wordpress to bbpress
Ashish Kumar (Ashfame)
ParticipantIf 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/
February 6, 2011 at 12:44 pm #37375Topic: import all topic and post from wordpress to bbpress
in forum Installation1onely
MemberHello
I need import all topic and post from wordpress to bbpress
Can i ? or not
Thanks
February 5, 2011 at 8:47 pm #99146In reply to: Translating BBPress gone wrong
_ck_
ParticipantSome 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
February 5, 2011 at 8:47 pm #104246In reply to: Translating BBPress gone wrong
_ck_
ParticipantSome 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
February 5, 2011 at 5:26 pm #37373Topic: installing bbPress from within WordPress
in forum InstallationAeolius
MemberI 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?
February 5, 2011 at 3:06 pm #54456In reply to: Add nofollow to links
engin1984
Participanthttps://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
February 5, 2011 at 1:08 pm #99145In reply to: Translating BBPress gone wrong
Lightheaded
MemberI 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..
February 5, 2011 at 1:08 pm #104245In reply to: Translating BBPress gone wrong
Lightheaded
MemberI 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..
February 5, 2011 at 12:26 pm #37334Topic: Translating BBPress gone wrong
in forum TroubleshootingLightheaded
MemberHello!
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.
February 5, 2011 at 7:47 am #98903_ck_
ParticipantOkay 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
February 5, 2011 at 7:47 am #104003_ck_
ParticipantOkay 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
February 5, 2011 at 6:18 am #98901_ck_
ParticipantThis 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.
February 5, 2011 at 6:18 am #104001_ck_
ParticipantThis 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.
February 4, 2011 at 10:25 pm #99170In reply to: Single login error – "Multiple user_login matches"
shawn2
MemberI 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
!!!
February 4, 2011 at 10:25 pm #104270In reply to: Single login error – "Multiple user_login matches"
shawn2
MemberI 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
!!!
February 4, 2011 at 8:53 pm #94917In reply to: bbPress 2.0 – Updates
Rich Pedley
Memberif 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.
February 4, 2011 at 7:34 pm #69834In reply to: phpbb3 -> bbpress converter
d3rutat
MemberThanks 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?
February 4, 2011 at 6:44 pm #94916In reply to: bbPress 2.0 – Updates
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.”
February 4, 2011 at 6:41 pm #96464In reply to: bbPress uses WP theme?
naviathan
MemberI 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+
February 4, 2011 at 6:41 pm #101564In reply to: bbPress uses WP theme?
naviathan
MemberI 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+
February 4, 2011 at 6:32 pm #98847In reply to: Login WP not logging in BBpress
koawinter
ParticipantRaamdev, 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”.
February 4, 2011 at 6:32 pm #103947In reply to: Login WP not logging in BBpress
koawinter
ParticipantRaamdev, 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”.
-
AuthorSearch Results