I’ve just updated to the very latest version of the excellent Kitten’s Spaminator Kitten’s Spaminator so go check out the new options page to configure the plugin! It’s at Options->Spaminator.
Category Archives: WordPress
Testing Gnome-blog and WordPress
This is a test post from Gnome-blog. Very simple interface, but I prefer the javascript/html bookmarklet myself!
Later… It works, sort of. I was able to post the above text but I couldn’t:
- Pick the category to post to
- The post title wasn’t set.
- The Smarty cache wasn’t cleared so I presume xmlrpc.php doesn’t go through the usual wp-admin/ backend.
WordPress Multiuser Jan 9th Snapshot
Here’s a major update of WPMU. Go download it now!
New in this snapshot:
- Use PEAR Function Cache if available. Several plugins have been rewritten so they’ll cache their output to save on databases processing.
- Main WordPress loop has been cached in a better way. If a page is now cached all we need to do is get a few settings from the database.
- The last release was plagued by the wp-login feature that redefined the site url if the blog was moved. As all wpmu URLs are virtual this was a big one!
- Kitten’s Spaminator will now import keywords from the “main” blog to help detect spam in other blogs. (As there’s no registration page yet you’ll have to trust me that it works great!)
- Previously when comments were posted, regardless of whether they were spam or not, the Smarty cache was cleared. This wrecked any performance gained by caching content so now the cache will be refreshed from the backend.
- Because of too-vague mod_rewrite rules, posts with titles containing 4 digits failed.
- Misc bug fixes and WP upgrades.
WPMU Update – Improved Caching
Hopefully you should see this site run a little faster, I’ve moved most database accesses to inside the cache loop.
For most users caching and processing of requests should be faster as the whole WordPress posts-loop is now cached, however there is a trade off. I can’t check if there are multiple or single posts on a page so every page, including the front page, is cached with your comment credentials and user login (if any). In other words, if I visit the front page and then you do, the front page won’t be cached for you, but if two anonymous users visit the second visitor will get a completely cached copy.
If you see any problems please leave a comment on this post, or email me at donncha @ linux.ie!
A bit later…I’m watching the logs and I’m glad I made that change. We’re being hit by 240 280 attempts at referer spamming from sex 4singles.com. After the first hit, all they get served is static html! 🙂
WPMU Update – mod_rewrite fix for digits in URLs
Here’s a small fix to fix a big mod_rewrite rules bug. URLs like this, http://blogs.linux.ie/xeer/2005/01/06/2004-indian-ocean-earthquake-wikipedia/, won’t load properly as mod_rewrite gets confused between the date of the post and the year in the title. Here’s a quick fix:
Open the .htaccess file in your root directory and replace each occurance of ^(.*)
with ^([_0-9a-z-]+)
Thanks to Kae and Darragh for spotting that.
The latest CVS update broke post editing a bit, an extra field was added. Here’s how to update your blog if you’re using it:
cd wp-inst/wp-content/blogs; for i in *; do echo "ALTER TABLE wp_"$i"_posts ADD menu_order INT( 11 ) DEFAULT '0' NOT NULL" | mysql wpdb ;done
WordPress is Arstechnica "Web application of the year"
WordPress won an award!
WordPress is the most prominent rising star of weblog software, completely free and with a large and active community.
Several other notable categories, including the infamous “Thumbs Down” award going to ATI for their dreadful Linux driver support. #debian gets an honourable mention in this category too. Looks like it’s not the place to go to for Linux solutions! Try the ILUG instead!
That Spam Problem
Every blog on this machine now has the the spam words from my blog appended to their own!
Blog authors here should hopefully see a major decrease in the number of spam comments and trackbacks they have to moderate as I’m fairly diligent in updating my word list!
More on spam trackbacks to come later including mangled links to some of my content that was robbed to create a spam weblog. Thanks guys – just the motivation I needed to update my spam fight! nah nah nah! 😛
Planet ILUG
Not sure who did it, but Planet ILUG is a site containing all the blogs here!
Spam Spam Spam, Come on up and get your spam!
Here’s an updated list of recent spam to this list. It’s updated every few minutes so you can see a snippet of the spam that’s being deleted automatically here by Kitten’s Spaminator and diligent updating of keywords. Go wild!
I need to think about this a bit more. WPMU supports multiple blogs, run by multiple different people, all of whom can update their spam word lists. Wouldn’t it be useful to have a “I trust the following blogs” list so that spam words can be shared between blogs?
Slightly related, I started using PEAR Cache to cache frequently used database calls. Stuff like the “last posts” and other plugins now use that. It’s working very well and load on the server has gone down!
Oh, and when you’re updating to the latest CVS version of WordPress, a database table has changed. I ran the following to update my tables:
cd wp-inst/wp-content/blogs; for i in *; do echo "ALTER TABLE wp_"$i"_users CHANGE dateYMDhour user_registered DATETIME DEFAULT '0000-00-00 00:00:00' NOT NULL "| mysql wordpress_db; done
WordPress Multiuser – Dec 10th snapshot
Only a few days since the last release this one should fix many or hopefully all the problems with missing pages, archives not working, etc.
The mod_rewrite rules have been significantly updated in this release.
Go to the download page for more info and links.