Two nice WordPress plugins were released this week that might be of use to some.

First up is Local Analytics. This plugin caches the urchin.js file on your local server, allowing  faster loading of the script. It also adds an admin configurable host of options that allow better tracking of outgoing links, downloaded files, and email address links. Definitely worth a try if you like Google Analytics (and you should).

Next up is the WordPress Super Cache plugin. Heavily modifying the WP-Cache 2 plugin, Donncha O Caoimh has created another great plugin for WordPress. If you’ve got a lot of traffic and fairly static content, it might be just the thing you’re looking for. Comments suggest there might be issues with AJAX or other interactive features. So try it out and see how it works.

Unfortunately, I’ll have to wait on Super Cache. Despite a nice modification to use the plugin on a Windows IIS or Apache server, it still requires the ISAPI_Rewrite 3.0 package for use on Windows servers. With most of my work involving .NET development now and the site up and running fine on WordPress, maybe I should migrate to a PHP account?

A big thanks to TechTracer for pointing me in the right direction for a frustrating WordPress error.

After upgrading to WordPress 2.3 (fairly painless, despite the major changes due to “tag” implementation) I couldn’t upload images. Any image over 100K would produce an error stating: Allowed memory size of 16388608 bytes exhausted (tried to allocate 6400 bytes). It also made reference to the includes\image.php file.

After reading the TechTracer post, I added one line of code just after the <? php tag in the image.php file:

ini_set(‘memory_limit’,’32M’);

The additional functions in WordPress (tags) and the plug-ins that I’m running must max out the memory. Now, I can upload my images and WordPress will resize and generate thumbnails just like it should (using the excellent Flexible Upload plug-in, that is).

WordPress 2.3 is right around the corner. Schedule for release on Sept. 24, it has several nice, new features. To get up to speed, I’d recommend reading 10 Things You Need to Know About WordPress 2.3. It’s the first article I’ve seen that sums up all the work and changes from 2.2 to 2.3 in an easy to understand format.

The most notable change is the support for “tagging” posts. Similar to Flickr and other sites, posts will not have categories and can also be tagged with more general relationships. This addition changes the structure of the WP database and could possibly break some of you favorite WP plug-ins.

I’ve installed Release Candidate 1 on another site and the only casualty was the excellent Extended Live Archive plug-in. I doubt the problem will be fixed, since the plug-in has seen little activity. Maybe someone will come along with something similar for 2.3.