Forum Replies Created
-
In reply to: bb-config & wp-config
That may not be possible at this time.
bbPress is supposed to “move out of the way” of WordPress, but WordPress is not as polite.
In reply to: bb-config & wp-configThe original post is pretty much wrong.
https://bbpress.org/documentation/integration-with-wordpress/
Read the whole page there.
In reply to: Integration with MU 1.5.1I’ll have to download the final release and check integration.
In reply to: Using RSS Feeds… read the “flimsy” manual …
In reply to: New type of profile spam?Are those URLs actually turning into links on the profile page? That is not how trunk or the 0.9 branch behaves now. We don’t strip tags, we just turn them into entities instead. Is there possibly some plugin that is filtering your profile field text and turning those URLs into links?
In reply to: php_e() issueThis is a tough one to resolve. I noticed before that someone managed to merge their pot files for wordpress and bbpress into one and load that into wordpress (and in turn bbpress)
In reply to: New bbPress BUGGY!!!I will be working on auto-generating the .htaccess file soon. It will be part of bbPress 1.0
In reply to: Spanish characters aren’t shownSomeone posted recently with the same problem. Apparently there is a plugin that is causing whitespace to be sent before the headers.
Try deactivating plugins until you find which one, or dig deeper into the recent topics here to find the problem.
In reply to: tinyMCE losing <p> formatting on EditbbPress turns < p > tags back into double line breaks and < code > back into backticks ( ` ).
You will need to somehow override this or force reconversion in TinyMCE or FCKeditor
In reply to: Public forumsso10 did some work on anonymous posting for core a while back. But it was never 100% completed or perhaps never 100% tested. I’m not sure.
In reply to: Request: Plug-in Update@ _ck_
I’m not sure it works either…
In reply to: Another pretty permalink/mod_rewrite mysteryI don’t think the path modification you are trying to enable is possible out of the box.
You might like to try looking at bb_repermalink() where I believe that redirection you are seeing is being forced.
In reply to: bb_query: get topics started within a date range?In reply to: Profile hook/filterDirty hacks are prone to break from release to release…
It’s worth noting here that you can also override the database value in your bb-config.php file. Just in case anyone can’t directly access their database.
$bb->uri = 'http://example.com/bbpress/';
In reply to: Pretty Permalinks Not Working@ stitchadoodle
The rules are output to screen when you go to http://example.com/bb/bb-admin/rewrite-rules.php
Obviously replace example.com with your domain.
It could be a plugin sending whitespace when there is no user logged in.
In reply to: Troubleshoot integration@ mykes
I double checked, the latest stable version of WordPress MU uses the old password hashing and cookie types.
You can dumb down bbPress to work with that version of WordPress MU by using both of these bbPress plugins.
https://bbpress.org/plugins/topic/mouldy-old-cookies-for-bbpress/
https://bbpress.org/plugins/topic/md5-insecurity-for-bbpress/
In reply to: bbPress Top 100 – May 2008 updateYou might have missed all the international wordpress.com forums, although only one or two might creep into the top 100.
http://de.forums.wordpress.com
http://el.forums.wordpress.com
http://en.forums.wordpress.com
http://es.forums.wordpress.com
http://fa.forums.wordpress.com
http://fr.forums.wordpress.com
http://id.forums.wordpress.com
http://it.forums.wordpress.com
http://nl.forums.wordpress.com
http://pt.forums.wordpress.com
http://pt-br.forums.wordpress.com
http://sv.forums.wordpress.com
http://tr.forums.wordpress.com
You should change the listing for the English forum to en.forums…
Look out for i18n number formats!
In reply to: bb_query: get topics started within a date range?BB_Query can’t do this at the moment as far as I can tell. It probably should though.
I’ll make a trac ticket to suggest this.
At the moment you could do two BB_Queries and intersect their results. But that’s pretty poor.
Just be sure if you do use a direct query that you prepare it first. e.g.:
$startdate="20070602103049";
$enddate="20080212090232";
$query = $bbdb->prepare("SELECT * FROM %s WHERE topic_start_time BETWEEN %s AND %s ORDER BY topic_start_time DESC", $bbdb->topics, $startdate, $enddate);
$topics = $bbdb->get_results($query);In reply to: localizing pluginsIf you go into the plugin browser on this site and then go to the admin area of your plugin you will find some localization tools on that page.
One will add a textdomain to a PHP file that you upload, the other will generate a POT file from any of your tagged versions in the subversion repository.
In reply to: Categories in 0.901?This behaviour (which is intentional) can possibly be changed with a plugin.
Although I tend to think the behaviour should change.
In reply to: Template tag for calling the template directoryUse these functions:
bb_active_theme_uri(); // echos active theme URI
bb_get_active_theme_uri(); // returns active theme URI
bb_get_theme_uri( 'user#foobar' ); // returns given theme URI where theme is in "my-templates/foobar"In reply to: Hardening with file permissions?It depends on your webserver setup, but generally that sounds OK
You might want to further restrict your config file if you are on a shared host.
In reply to: bbPress 0.9.0.2 + WordPress 2.5.1 cookie conflict?You guessed right.