There was a very unfortunate bug in all previous versions of the Comment E-Mail Verification Plugin. The verification message was sent to all comment authors, i.e. including those whose comments were caught by Akismet (or any other anti-spam plugin).

I strongly recommend you update to the new version 0.1.2.1

Spammers often use fake mail addresses. If an address doesn’t exist, your only problem is some additional server load trying to deliver that message, plus, possibly, bounces in your inbox.

However if, as in most cases, those addresses actually belong to someone who didn’t write that comment in the first place, those people will be bothered. Plus, since the comment itself may appear in the verification message (the default setting), you will be considered a spammer. Even worse, this might get your server blacklisted!

So if you’ve been using the plugin, please download the new version 0.1.2.1

Due to excessive work-load this post was written two days after the release of the bugfix which was available through your WordPress admin area immediately. I have set the date of this post back to approximately the time of the bugfix release.

Mark Jaquith has a wonderful plugin for plugin developers: I Make Plugins. While working on the redesign of this site I ran across a bug in that plugin which caused the entire readme to be downloaded and stored to the postmeta table every time a plugin page was loaded. Here’s a patch (diff) for version 1.1 of the plugin.

February 23, 2010 | No comments

My Comment E-Mail Verification Plugin for WordPress has received some tender loving care: blog admins can now customize the messages sent to comment authors. Download from wordpress.org

February 22, 2010 | No comments

Nils asked me whether I knew about a WordPress plugin that would verify a comment author’s e-mail address. I didn’t, so I wrote one myself.

The plugin is in its early stages, the current version number is 0.1 – you are welcome to test-drive it and watch it grow, or watch me procrastinate and forget about it over my day-job :/ if I do, go ahead and nag!

Download the latest version (ZIP).

If you have a question about the plugin please go to the plugin’s homepage.

This release has been internationalized. I have created a German language file myself. If you would like to create a language file in your language you are more than welcome to do so (POT file is included with the plugin). Please contact me by posting a comment on this post (and be sure to provide the correct e-mail address so I can write back) to have it included in the next release.

I have written a WordPress Plugin: Top Spammers displays a list of your top spammers’ IP addresses, based on all comments in your database that are marked as spam. It also generates a blacklist for your .htaccess file to block those spammers from your website entirely, thus taking load off the server. You will need another plugin (like Akismet) to identify the spam.

Download the latest version (ZIP).

If you have a question about the plugin please go to the plugin’s homepage.

review

August 14, 2009 | No comments

Syntax Highlighting on this blog is brought to you by http://alexgorbatchev.com/wiki/SyntaxHighlighter. – I’m using the “old” 1.5.1 version on purpose: it allows you to copy the code to your clipboard without using the flash code… unlike the new version where you end up selecting the line numbers as well. Update: I’ve shifted to the SyntaxHighlighter Evolved WordPress plugin by Viper007Bond.

August 6, 2009 | No comments

I was in need of a PHP class to encrypt hash and verify passwords using salted sha1 hashes. Here it is, quick but not too dirty:

<?php

class SSHA
{

  public static function newSalt()
  {
    return chr(rand(0,255)).chr(rand(0,255)).chr(rand(0,255)).chr(rand(0,255)).chr(rand(0,255)).chr(rand(0,255)).chr(rand(0,255)).chr(rand(0,255));
  }

  public static function hash($pass,$salt)
  {
    return '{SSHA}'.base64_encode(sha1($pass.$salt,true).$salt);
  }

  public static function getSalt($hash)
  {
    return substr(base64_decode(substr($hash,6)),20);
  }

  public static function newHash($pass)
  {
    return self::hash($pass,self::newSalt());
  }

  public static function verifyPassword($pass,$hash)
  {
    return $hash == self::hash($pass,self::getSalt($hash));
  }

}
Download and Watch Full Movie Kingsman: The Golden Circle (2017)
  • Kingsman: The Golden Circle (2017)

  • Duration
    141 mins
    Genre
    Action, Adventure, Comedy.
  • In Cinemas
    September 20, 2017
    Language
    svenska, English, Italiano.
  • Country
    United States of America.
  • Watch Full Movie Kingsman: The Golden Circle (2017)

Plot For Kingsman: The Golden Circle

Movie ‘Kingsman: The Golden Circle’ was released in September 20, 2017 in genre Action. Matthew Vaughn was directed this movie and starring by Colin Firth. This movie tell story about When an attack on the Kingsman headquarters takes place and a new villain rises, Eggsy and Merlin are forced to work together with the American agency known as the Statesman to save the world.

DIRECTOR

Matthew Vaughn.

Producer

Matthew Vaughn, Adam Bohling, David Reid.

Writer

Matthew Vaughn, Jane Goldman.

Production Company

Twentieth Century Fox Film Corporation, Marv Films, TSG Entertainment.

Incoming search term :

Streaming Kingsman: The Golden Circle 2017 Online Free Megashare, Watch Kingsman: The Golden Circle 2017 Online 123movie, Kingsman: The Golden Circle 2017 movie download, download Kingsman: The Golden Circle movie now, Watch Kingsman: The Golden Circle 2017 Online Megashare, Kingsman: The Golden Circle movie streaming, streaming Kingsman: The Golden Circle 2017 movie, trailer movie Kingsman: The Golden Circle, download movie Kingsman: The Golden Circle 2017, live streaming film Kingsman: The Golden Circle online, Watch Kingsman: The Golden Circle 2017 Online Free 123movie, watch film Kingsman: The Golden Circle 2017 now, film Kingsman: The Golden Circle online streaming, Kingsman: The Golden Circle 2017 Watch Online, Kingsman: The Golden Circle 2017 film download, Watch Kingsman: The Golden Circle 2017 Online Free Viooz, watch full Kingsman: The Golden Circle film, Kingsman: The Golden Circle movie, Watch Kingsman: The Golden Circle 2017 Online Free, live streaming film Kingsman: The Golden Circle, Watch Kingsman: The Golden Circle 2017 Online Free Putlocker, Watch Kingsman: The Golden Circle 2017 For Free online, Watch Kingsman: The Golden Circle 2017 Online Free hulu, movie Kingsman: The Golden Circle 2017 download, Streaming Kingsman: The Golden Circle 2017 For Free Online, watch full Kingsman: The Golden Circle 2017 movie online, Watch Kingsman: The Golden Circle 2017 Online Putlocker, watch full film Kingsman: The Golden Circle 2017, Kingsman: The Golden Circle film trailer, Watch Kingsman: The Golden Circle 2017 Online Free netflix, Watch Kingsman: The Golden Circle 2017 Online 123movies, watch Kingsman: The Golden Circle 2017 movie now, download full film Kingsman: The Golden Circle 2017, film Kingsman: The Golden Circle 2017 online, Watch Kingsman: The Golden Circle 2017 Online Free megashare, watch full movie Kingsman: The Golden Circle online, Watch Kingsman: The Golden Circle 2017 Online Viooz,

July 26, 2009 | Permalink

« Older entries § Newer entries »