Search Results for 'bbpress'
-
AuthorSearch Results
-
August 25, 2008 at 5:33 am #58007
In reply to: Language changed without any action
chrishajer
ParticipantIt’s OK to start a new topic for a new problem.
To change the language, you need to make a change to the bb-config.php file, and you need to install the language files. There is an Arabic language file shared here:
To install a language file, the instructions are right in that area of bb-config.php:
// Change this to localize bbPress. A corresponding MO file for the
// chosen language must be installed to bb-includes/languages.
// For example, install de.mo to bb-includes/languages and set BB_LANG to 'de'
// to enable German language support.
define('BB_LANG', '');You put the file (downloaded from Google Code) into the `bb-includes/languages/ directory. Then enter the name of the file here in between the single quotes for the BB_LANG constant. For Arabic, I think the file is ar_AR.mo, so your config line would be:
define('BB_LANG', 'ar_AR.mo');
There are more files available at that code.google.com site for an Arabic bbPress. It’s actually very nice that someone shared all their work. Looks like there is a localized version of bbPress there as well, possibly with more items translated that were not translatable with a language file.
August 25, 2008 at 12:02 am #67156In reply to: Keymaster lost after integration
Erica S
MemberI don’t think that’s possible, and probably something that the makers of BBpress should change. It says under settings that: “Changes do not affect users with existing roles in both WordPress and bbPress.” I’ll have to delete my user and then recreate it. Then that role will be assigned. But I don’t think it will change any existing members. Thanks again.
August 24, 2008 at 9:15 pm #3875Topic: Create a “Plugin Browser” like on this website
in forum Troubleshootingdarky2
MemberHello everybody!
I’m working on a new software based on Perl. But I’m also a fan of bbpress and the plugin browser that this site has. I wanted to ask you, how I could do a similar one using bbpress. Especially the connection with SVN and the pages a plugin can have. How can I do this? Could you help me? Thx a lot!
August 24, 2008 at 8:54 pm #67152In reply to: Keymaster lost after integration
chrishajer
ParticipantYes – you just need to do it for the proper user in the wp_user_meta table. Sounds like you’re getting somewhere. You need to look in the wp_users and wp_usermeta tables for your new bbPress users.
August 24, 2008 at 8:19 pm #67149In reply to: Keymaster lost after integration
Erica S
MemberThanks for the idea, I didn’t think of it that way. I just assumed that if I had accounts in WP then I didn’t need to create any in BBpress. Well, I tried that just now and something weird in the database. After registering a test member in BBpress I looked in the database and all I saw was the “non-existent” keymaster, the newly registered member wasn’t even in there. I looked in the WP user tables and the member was there but not in BBpress even though that’s where I registered them. This is a clean install, so there’s no plugins and editing the config file didn’t work either.
August 24, 2008 at 7:45 pm #57200In reply to: Show exact date of post? (not freshness)
csseur3
MemberHi fel64, how to adapt your plugin for integrate the ck’s plugin “forum last poster”: https://bbpress.org/plugins/topic/123 and show the exact date with the two plugins?
thanks
August 24, 2008 at 6:30 pm #67148In reply to: Keymaster lost after integration
chrishajer
ParticipantAre you using any plugins that could cause this? Maybe the Display Name plugin? I’ve heard that creates trouble for some people.
I’m sure there’s a way to fix this through the database. Have you created a regular member you can log in as? If so, then you just need to promote them to keymaster in the database. Try this:
There was this old trick too – not sure if it still works:
https://bbpress.org/forums/topic/no-site-keymasters?replies=6#post-909
August 24, 2008 at 6:21 pm #67143In reply to: Strange error on post
chrishajer
ParticipantIt’s possible something in the content you were posting was not escaped properly and it caused a syntax error when bbPress tried to insert it into the database. I don’t imagine you have the text of what you were trying to post, do you? You could try posting it here and see if this errors out.
It’s possible with that old version that something was fixed in the latest release and it won’t occur here.
August 24, 2008 at 6:19 pm #67157In reply to: Change topic date format
chrishajer
ParticipantThe first thing you do is search these forums.
Maybe you would have stumbled upon this.
August 24, 2008 at 5:00 pm #67147In reply to: Keymaster lost after integration
Erica S
MemberYeah, after the integration all of my members from WordPress could log in just fine into Bbpress. But the thing is that none of them can get into the admin. Only the keymaster had that access and it disappeared right after I set the cookies. I even tried setting the user roles before integrating so that my admin account would have keymaster access and it didn’t work. I’ve looked into the database and it says that the keymaster is there but when I log in it says that it’s username does not exist. Is there another way to fix this through the database?
August 24, 2008 at 4:23 pm #66801In reply to: 1.0 translations
August 24, 2008 at 4:21 pm #66067In reply to: WordPress + bbPress Integration 101
karlo
Member*couldn’t edit my previous post anymore – hence the double*
Hehe, I’m mighty proud now! I figured I’d check the config-files for both installation and see whether the information was matched or not (not having any idea what so ever if that could be the problem) and I found the different security-keys wasn’t identical – so I fixed that.
Now I have commenced mapping the role-maps and everything seems to be on track again. Thanks a lot for this guide and for making the systems compatible, saved me (well probably) an immense amount of time!
August 24, 2008 at 3:14 pm #66066In reply to: WordPress + bbPress Integration 101
karlo
MemberWell, the installation (with full wp-integration) went as smooth as it could have, but the index.php doesn’t want to load. Not even when fully referred to in the URL (/forums/index.php).
My ftp-client sees the full installation and the content of the file seems to be ok. What settings could cause this error other than the URL actually not being valid, though I can’t figure out why that should be?
EDIT: I found that Firefox can open and read the readme.txt and licence.txt just fine, but it wont execute the php-files properly… this is just wierd?? What the heck did I miss here?
August 24, 2008 at 2:22 pm #66889In reply to: Blank Screen
chrishajer
ParticipantThe password normally contains special characters and that’s fine. That’s how I can usually tell if the bbPress is an old version or new version, based on the password being sent out when you register.
There is no problem with having special characters in the secret keys: it’s just that if they’re not properly escaped, the server will choke on the config file because the bb-config.php does not have proper syntax.
So, make sure the keys are the same for WordPress and bbPress, make sure the bb-config.php is syntactically correct (
php -l bb-config.php
from a Linux command line) and then figure out why you can’t log in.You can also make the secret keys really short and easy to compare while testing to see if that’s the problem.
It’s also worthwhile to check any php file you edited for the proper syntax. Maybe once you log in, you are being served another page that has a syntax error (a template file?) and that is causing the blank screen.
Also, access to error logs will help with this, if you have them.
August 24, 2008 at 2:17 pm #66065In reply to: WordPress + bbPress Integration 101
chrishajer
ParticipantIf beta is the new stable (thanks Google) then alpha is the new beta?
In a test installation (just copy all your WordPress files and database) you can’t really hurt anything. Just use it and see if it works enough for you.
August 24, 2008 at 2:15 pm #66064In reply to: WordPress + bbPress Integration 101
karlo
MemberI guess I’ll try then, “beta” is the new “stable” nowdays anyway, how bad could it get ^^
EDIT: wp is installed in /blog, what is the recommended path for the bbPress in that case, if any?
August 24, 2008 at 2:15 pm #67141In reply to: Strange error on post
chrishajer
ParticipantAugust 24, 2008 at 2:13 pm #66063In reply to: WordPress + bbPress Integration 101
chrishajer
ParticipantMy advice would be to install it in a test instance and use it. See how unstable it is for yourself. Only you can make the determination if it’s ready enough for you or not.
August 24, 2008 at 2:07 pm #66062In reply to: WordPress + bbPress Integration 101
karlo
MemberI have a fresh installation of the latest release of WordPress and integrating it with an installation of bbPress seems to be easy enough for a non-hacker like myself.
But, how unstable is the 1.0 alpha of bbPress really? The site I’m working on is to be a soon-to-be-released homepage for a choir that will use it mainly for news, recruiting and general talk. Would you rather advice me to go for the wp 2.5.1 + bbPress 0.9 version?
August 24, 2008 at 10:15 am #67110In reply to: Too many homepage queries
_ck_
ParticipantEveryone put this in your
bb-config.php
$bb->load_options = true;
and that number will go down radically.
For some reason I don’t understand they refuse to make that the default and therefore bbPress just “lazy loads” each option as each plugin requests it.
If you are using the 1.0 alpha they still have a bit of work to do with query reduction as they rewrote half the routines and storage layout but left it unoptimized. For example each forum on the front page is loaded as a separate query and then the meta for each forum is loaded as a separate query. It’s a bit crazy because if you have a dozen forums that’s 24 queries but I have high hopes Sam or MDA will tackle that soon and do it all in just two queries.
Last but not least there is a serious optimization problem IMHO in all versions where bbPress will “read before write” every time a meta option is saved, regardless if it’s just been loaded and sitting in the object cache. I have to put a bit of extra code in all my plugins to work around this issue. The reason why they do that is to determine if they should do an INSERT vs an UPDATE because you can have duplicate keys on meta data by design and mysql can’t be told what to do if the key already exists. But there are better ways to do that – since 99.99% of the time it’s going to be an update since the data already exists – do an update and just check for a mysql error on the return (or count rows affected) – then do an insert instead that one time it’s needed.
August 24, 2008 at 10:06 am #67135In reply to: can’t add topic
_ck_
ParticipantCorrect me if I am wrong but you have ALL forums set as categories, which means it can’t hold topics, so bbPress is messed up.
Change the forums to regular foums.
August 24, 2008 at 5:55 am #3873Topic: put osCommerce INSIDE bbPress?
in forum Installationsaturnstroll
MemberI’ve seen tutorials about “how to” setup osCommerce, and put WordPress inside.
My question is:
Can you setup bbPress, then put ocCommerce INSIDE bbPress?
How do you recommend I setup these two components? (bbPress & osCommerce)
Thanks
August 24, 2008 at 1:46 am #55314In reply to: Plugin: Allow additional or custom profile fields
Detective
MemberI use it in WP and bbPress
It’s easy to adapt, and as you have both integrated …
Of course you could also print the “about” text entered by the user in their Profile page in the Dashboard. So you only really need a plugin for the gamertags.
August 24, 2008 at 12:49 am #3872Topic: Keymaster lost after integration
in forum InstallationErica S
MemberI just installed the latest stable release of bbpress and integrated it with wordpress 2.5.1. After setting up the integration, I immediately was logged out and couldn’t log back in with my keymaster. I searched the forums and tried everything that was suggested such as the plugin, adding a line to bb-config.php, and trying to edit phpmyadmin usermeta. I don’t know why the plugin didn’t work since my keymaster is at ID#1. And editing through phpmyadmin was useless since my usermeta was already set to keymaster. I’ve uninstalled and reinstalled and keep getting the same results.
August 23, 2008 at 8:55 pm #55312In reply to: Plugin: Allow additional or custom profile fields
Detective
MemberPilola, you could use this plugin: https://wordpress.org/extend/plugins/gaming-codes/
I use it here: http://www.ryuuko.cl/bbpress/ (see the “nuestros usuarios” links).
-
AuthorSearch Results