angsuman
Forum Replies Created
-
Forum: Plugins
In reply to: Five plugins you can’t live withoutFour I use since 1.5 are:
Search Hilite – Highlights search results for people coming after Google, yahoo queries
Run PHP – Allows embedding php code in posts
Witty Text – Allows embedding random quote from a text file
Follow URL – Disables rel=nofollow tagging on all comments and comment author url’sI have disabled Staticize, AuthImage, Trackback Moderate, Pingback Moderate and lot of other plugins because either they do not work under wordpress 1.5 or mostly because they are not useful to me anymore.
I get the same too with my wondows install.
Anyone?Forum: Requests and Feedback
In reply to: Suggestion: Please remove some meaningless plugins from default@podz
As for CAPTCHA stuff, I am not using any since WordPress 1.5. I think you guys have done a wonderful job wrt. preventing comment spam.As for Staticize, I have disabled Staticize from my blog because it often gave me problems like: blank display, gibberish display on certain posts etc. In short it is very unreliable as far as my experience goes. I would rather take my chances with SlashDot 🙂
I echo Jinsan’s statement above.
@nuclearmoose Please don’t lace it with emotion 🙂
If you like the plugin you can always download HelloDolly or Textile 1 & Textile 2. But why include it in default? Also I think WordPress does some Textile stuff on its own like including paragraphs for new lines, urlize etc. Why do you think we still need it?
My point being that such plugins simply serve not much purpose to be included with the default install. I would rather have a procedure that makes installing plugin one-click process from my blog admin panel. Look at JEdit plugin installation procedure to get an example.Forum: Requests and Feedback
In reply to: Wiki-like blog?Forget mod_rewrite! I have mod_rewrite enabled on my server, yet couldn’t get it working as desired after quite some effort. So I just opted for having index.php as part of the url. Still pretty, still with a wiki like structure as you need, however without the accompanying hassles. It works everytime. For example my perma-links look like:
http://blog.taragana.com/index.php/archive/javaone-proposal-not-rejected/
Note the index.php in the middle!Forum: Requests and Feedback
In reply to: nofollow should be an optionI fully agree with you. nofollow is of benefit to Google and other search engines. It doesn’t benefit the bloggers. I want to provide commenters on my blog some link-love back to their own blog. This is how the web works – we share, we help each other. And it also helps adding rank to relevant sites.
My bones with nofollow is that it penalizes legitimate links along with the illegitimate ones as you pointed out.
I make sure my blog is spam free, install plugins as required, monitor the blog. So I would never go for nofollow. Nor should anyone who actively blogs and takes steps to prevent comment spam.
As you correctly pointed out comment-spamming is done in bulk. They don’t care if your blog is nofollow compliant or not. Either way they will spam you. As someone pointed out before there are spammers who just want people to click on their site. They don’t care much about google ranking. If 1000 people visit your site everyday chances are some will be in such a state of mind as to click on such spam and get their fill of p*n or v*a or whatever it is advertised. And that will happen irrespective of nofollow.I strongly think nofollow should be an option. Until then this plugin does exactly that in the simplest way possible.
Forum: Requests and Feedback
In reply to: RSS feed for each categoryYou can have feeds by category in Strayhorn.
For example to get all the RSS 2.0 feeds for the Java category from my blog use:
http://blog.taragana.com/index.php/category/Java/feed/Forum: Requests and Feedback
In reply to: nofollow should be an option[Cross-posting from another thread]
You can use a plugin I recently developed to strip nofollow tags from comments and comment author links.
http://blog.taragana.com/index.php/archive/wordpress-15-plugin-strip-nofollow-tag-from-comment-urls/It actually prevents nofollow tag by unregistering a default plugin which does it. As for preventing nofollow in comment author link, it is forced to actually strip the nofollow after it has been added by a strangely named function. Interetingly there is no better way without modifying the core code in this case.
This doesn’t modify any WordPress code. It has been well tested with WordPress 1.5.
BTW: I too strongly believe that nofollow should be an option and for some bloggers who proactively monitor their blogs. We say no to “nofollow” – http://blog.taragana.com/index.php/archive/to-nofollow-or-not-that-is-the-question/
Lets hope the authors of WordPress add nofollow as an option to core code.
This really should be an option and not a plugin!
Forum: Fixing WordPress
In reply to: turning nofollow offYou can use a plugin I recently developed to strip nofollow tags from comments and comment author links.
http://blog.taragana.com/index.php/archive/wordpress-15-plugin-strip-nofollow-tag-from-comment-urls/It actually prevents nofollow tag by unregistering a default plugin which does it. As for preventing nofollow in comment author link, it is forced to actually strip the nofollow after it has been added by a strangely named function. Interetingly there is no better way without modifying the core code in this case.
This doesn’t modify any WordPress code. It has been well tested with WordPress 1.5.
BTW: I too strongly believe that nofollow should be an option and for some bloggers who proactively monitor their blogs. We say no to “nofollow” – http://blog.taragana.com/index.php/archive/to-nofollow-or-not-that-is-the-question/
Lets hope the authors of WordPress add nofollow as an option to core code.
Forum: Plugins
In reply to: WP Categories to Technorati Tags pluginIsn’t category already technorati tags enabled? The technorati folks think so and also my own experience with WordPress categories suggest that they are technorati tags enabled.
Forum: Plugins
In reply to: Referrer spammer caughtThanks Jalal. That was a duh mistake 🙂
Forum: Plugins
In reply to: Referrer spammer caughtI used a slightly modified code:
/* Spam Guard */
if (strpos($HTTP_REFERER, ‘ttp://’) > 0)
{
$pieces=explode(“/”, $HTTP_REFERER);
$lookup = gethostbyname($pieces[2]);
if ($lookup == “219.150.118.16” or $lookup == “161.58.59.8” or $lookup == “211.144.164.201” or $lookup =”216.34.38.81″)
{
syslog(LOG_ALERT,”redirected $pieces[2]”);
header(“Location: ” . $HTTP_REFERER);
exit();
}
}/* End Spam Guard */
However I realized that it somehow prevented coming to my blog from any links! It is sending it back to itself. Now I understand that is what is being done for these particular IP’s only. Why is it being so generic?
Forum: Plugins
In reply to: Referrer spammer caughtMy major source of referer spam is with referer as different sub-domains of best-xp-software.biz ( 211.144.164.201 ). So I have added that too.
Thanlks for the tip.