Hi Sturgn,
I wrote this plugin but have not been receiving these problem reports, so I apologise for the delay in replying. It may well be that you are not using the default user (the user with user ID number 1). If you use this plugin with a default installation of WordPress on a self hosted website, the default userID for the admin user is 1, which allows the plugin to work fine. If this is not the case, the plugin can be switched to use another userID like this:
Locate the file index.php in the WordPress home directory of your webserver and open it in an editor. Add the line below on a new line just after all the comments (lines that begin with *) in this file. Save the file and revisit your website using your browser. You may have to refresh a couple of times on the site to ensure the cookie is set and that you are not looking at a cached copy of the site.
To set the userid to 2 for example:
setcookie(“tid”, “2”, time()+60*60*24*100,”/”);
This sets the cookie for 100 days every time you visit the site, so it should never effectively expire.
I hope this helps.
John