Forum Replies Created
-
In reply to: How to disable html on the posts?
Ah, see that was your problem we didn’t know about because of how you weren’t explaining it – bbpress makes plain text links clickable.
Thanks for following up on that zaerl.
In reply to: How to disable html on the posts?Unfortunately that plugin isn’t working in my bbPress 0.9.0.6
Does any one else have any other solutions?
You need to post far more details about what you are trying to do and what exactly is “not working”.
In theory that plugin should work fine and you can even make it conditional so admin can post html code but not members.
Not sure why he does it after bb_init, so try it plain like this.
<?php
/*
Plugin Name: zaerl No HTML
*/
function za_nh_allow_tag($tags) {return array();}
add_filter('bb_allowed_tags', 'za_nh_allow_tag',999);
?>Should be all you need.
In reply to: problem with the i18n to hebrew of bbressYou should temporarily put the files on mediafire.com or similar since getting SVN access is difficult.
You should definitely host this file somewhere to help others.
Try mediafire.com or similar, getting SVN access is difficult now.
In reply to: It's overNothing is over unless you don’t know how to code and are in a rush.
bbPress is very stable and very fast and there are literally ten thousand sites using it.
Every month that goes by you’ll simply have more options.
In reply to: Nicer permalinks plugin messes up the forum sitemapDon’t take it personally – akismet screws up dozens of posts here each week, seemingly at random. It either doesn’t like your IP or email address or some weird combo of keywords. It’s also probably why you had so much trouble registering.
At least you spoke up, imagine how many other people have tried to post here and gave up in vain and wrote off bbpress entirely.
This is why I tell people not to use akismet but human-test/blocklist instead and rely on mods to look for bad posts.
In reply to: Nicer permalinks plugin messes up the forum sitemapRescued from akismet.
@ricardouk all your posts will unfortunately be marked as spam as they never seem to fix akismet so be patient as it takes mods some time to notice false positives.
In reply to: is registration broken on bbpress.org ?They must be getting blocked by akismet.
Yup, I just had to rescue their new topic.
In reply to: Request: Plugin Human Test for WordPressI probably won’t be working on WordPress anymore, at least I hope.
But if someone else wants to convert it they are more than welcome.
I find it hard to believe with the dozens of captcha plugins for WP, none can satisfy you. How about this one?
https://wordpress.org/extend/plugins/math-comment-spam-protection/
In reply to: bbPress article deleted from Wikipedia?bbPress still deleted from Wikipedia
bbPress’s article was deleted for a SECOND time a year later.
Someone had re-created a quality article in late 2009 and it was deleted again in February 2010 (originally first deleted in 2008).
buddyPress only has a couple thousand installs and bbPress has ten thousand.
Yet buddyPress’s article remains.
It’s politics and it’s stupid.
In reply to: Topic "Views" is not countingIt’s possible the template for the forum page has a bug or missing code, I vaguely remembering one of my themes having this problem in an old copy.
You are using “the-hybrid” theme?
Does your
forum.php
template look like this?http://pastebin.com/raw.php?i=CLpMG0UF
(if not replace it)
In reply to: Topic "Views" is not countingAh the forum part requires part of the My Views plugin to be installed I believe (most-least views).
In reply to: problem with the i18n to hebrew of bbressYou’d need svn access and the only two person who can likely do that now is mdawaffe (or Matt)
But the i18n depository is surprisingly active with a dozen updates by various people over the past month, so there’s hope.
In reply to: piano black bbpress themeUnfortunately it’s unlikely anyone will port any more themes to bbpress at this point.
If you have no css knowledge at all, it’s probably not going to happen unless someone feels generous.
However there are a few dark bbpress themes available.
In reply to: Skip Dashboard and profile on loginThere is a possiblity they are redirecting to WP for login even via bbpress and because there is no
?re
(or whatever wordpress uses these days) it plops them right into the admin menu, which is typical WP insanity.In reply to: bbPress plugin September 15?Didn’t Matt agree to call it
2.0
instead of1.2
as a compromise to try to somewhat reduce the massive confusion that is going to happen?This forum is about to become a complete jumble of 1.2 vs 1.1 vs 1.0 vs 0.9
Since 100% of the plugins are now useless, can some kind of header be put on the plugin section to warn people not to try to install any of them?
In reply to: I think I found a pretty severe posting bug…Ben L. = nightgunner who is a talented coder.
https://bbpress.org/plugins/topic/profanity-filter/
I am sure they can fix it if you just let them know it’s causing the problem and give them some time.
In reply to: -1 years problem with topic_time (bbPress 1.0.2)You’ll get incorrect dates when the bbpress api cannot see the correct time.
But if you are saying the mouseover is working, that means that
$topic
has the right time.I suspect you do not have
$topic
as a global before your loop.So find the
foreach
you have and putglobal $topic;
before it.In reply to: I think I found a pretty severe posting bug…Yup. I’m hoping it’s not one of mine but I’ll fix it, if it is.
In reply to: I think I found a pretty severe posting bug…It’s possible one of the plugins that relies on post_text is messing with the content.
All these work with post_text
Allow Images
BBcode Lite
bbPress signatures
bbPress Smilies
Improved Spoiler (makes a spoiler bar)
Profanity Filter
If you can consistantly make the problem happen (and cure it) then put bbpress into safemode by putting this into your
bb-config.php
$bb->safemode=true;
and then try making the problem happen again.
Safemode will disable all plugins and switch you to the kakumei theme. But it’s not permanent, just remove the line and you’ll be back to normal.
In reply to: I think I found a pretty severe posting bug…Sounds like content encoding gone wrong.
Could actually be a mysql escaping problem since even 1.1 doesn’t use a robust escape (just addslashes if real_escape is not available).
When you say slanted quotes, do you mean backticks?
In reply to: Is bananasss a spammer?Akismet is very, very broken.
Even worse than the marking-as-spam not working is all the false positives which confuses the heck out of newbies or makes them upset because they think they are being singled out for something.
Right now for some reason I can’t even mark that reflex spam as spam – it doesn’t do anything.
In reply to: Topic "Views" is not countingTopic views will not increase if you keep viewing the same topic.
Look at other topics and then come back to it.
If it still fails to update it may be broken sessions support on your server.
In reply to: How to add plugin to repository ?Since the plugins area is a separate copy of bbPress, it’s very possible a permission didn’t get copied over.
What happens if you logout and then login from the plugin area specifically, any change?
In reply to: Does bbpress use sessions for anything?No, bbpress itself is stateless and does not use sessions.
Topic Views is one plugin that comes to mind that adds sessions to track when the same visitor sees the same topic over and over again to prevent the count from increasing.
Other plugins that deal with a multi-page registration process may also use sessions.