Forum Replies Created
-
In reply to: bbPress integration
That’s totally hot.
In reply to: Disallowing RegistrationSadly, by the time you get to the registration template, the user has already been added.
You could write a plugin that, during the
bb_init
hook, checks to see if $_SERVER matches the registration link and, if so, send a header(“Location: http://blah.blah/my-reg.php”).In reply to: Logout and login problemsCan you tell us what version of PHP, what webserver (apache, IIS, …) and version?
Can you provide a link to your site?
In reply to: tag.php access issueI really want to know wy this works in PHP5 but not PHP4.
This needs to get fixed at the source.
startribe (or anyone who has seen this problem): Can you de me a favor? Unfix the problem, then add
$bb->debug = 1;
on the first line of bbPress’config.php
file.Go to the tags page, and you should see some ugly text at the top of the screen. Can you paste that text here?
Thanks!
In reply to: Adjust Size of Hot TagsThat bug and some of these oddities should be fixed in the upcoming bbPress 0.80.
Thanks!
In reply to: Slashes being added in front of apostrophesDid you find the source of the problem? Even better, did you find a solution?
In reply to: Request: Post Edit TimesIn the upcoming bbPress 0.80, you’ll be able to set $bb->edit_lock = -1 to achieve this.
In reply to: tag.php access issueI asked about a .htaccess file in your templates directory, because in earlier versions we provided one that broke some people’s setups. We’ve removed it in later versions; you should not have a .htaccess file in any of your template directories.
bbPress should not need PHP5. I’d like to find the cause of this problem and fix it for good for everyone.
In reply to: tag.php access issueWhat version of bbPress are you using?
Do you have a
.htaccess
file in bbPress’bb-templates/
directory?In reply to: Looking for help with bb-ratingsGlad it works
In reply to: Looking for help with bb-ratingsTry
$topics = bb_top_topics();
as your first line.
bbpress.org/plugins has RSS feeds.
Probably not. There’s a lot of custom code talking to two different servers via http, cron jobs, svn actions and a dozen other things.
It’s not terribly well abstracted for use on arbitrary sites. To be honest, it’s a little spaghetti
My plan was for bbpress.org/plugins to be open by this past Friday. It will open tomorrow (Monday Jan 8th).
In reply to: bb_get_option_{option_name} noob questionsThe speed difference is negligable.
I would always use bb_get_option() so that a “power-user” can softcode the option value into the $bb variable if they want to avoid the extra database hits. bb_get_option_from_db() is mostly useful when you want to override data that has been softcoded (which probably isn’t very often).
PS: bb_get_option() is the function, ‘bb_get_option_{blah}’ is the filter.
bb_get_option( ‘my_option’ ) grabs the value for my_option and filters it through anything you’ve defined in the ‘bb_get_option_my_option’ filter. The filter is probably pretty useless for data that plugins store since you probably won’t have to modify on the fly the data that you provided in the first place.
The filter may be useful for data the core bbPress provides (you might want to filter ‘bb_get_option_page_topics’, for example, so that whenever bbPress core calls bb_get_option( ‘page_topics’ ), you can modify the returned value on the fly).
In reply to: bb_get_option_{option_name} noob questionsHere’s some info: https://bbpress.org/blog/2007/01/bbpress-options-api/
You shouldn’t access the data from the tables directly. It’s possible that at some point we’ll change where the data is stored, so use the API
In reply to: Possible bug: H1 fonts different in every browserThis will be fixed in the next release (.80).
In reply to: gettext.php Error: i cannot see the postsI’m not sure, but it looks like a bad .mo file. The Plural-Forms line of the .po file should end with a semicolon (.
In reply to: Trouble postingWhat browser are you using? Does the same thing happen in every browser?
Do you have any firewall or proxy servers set up?
In reply to: multiviews supported but getting 404 errorsMultiViews may be set up, but it may not be configured to recognize php files.
You should either contact your host or switch to the RewriteRules method.
In reply to: Using WordPress PHP functions inside of BBPressWhat about it doesn’t work? Do you get an error?
In reply to: problems log in@firefoxCan you log in with other browsers?
In reply to: latest reply by adminDid you install that pluign in bbPress’ my-plugins folder?
What is your Display name set to? (In your WordPress profile)
In reply to: Full Content of Most Recent Post on Front-Page?This is a really nice idea. I’ll work on getting some convenience functions written for the next “major” release.
In reply to: BBPress & LDAP Plug-in?I haven’t seen this WP LDAP plugin, but the answer is probably “no”.
A similar plugin would likely have to be written for bbPress.
In reply to: question about exporting from bbpressI’m working on a bbPress exporter now. It will probably be included in the next “major” release.
I hadn’t thought about an importer from bb to WP, but I’ll see what’s possible.