Using WordPress to Log System Changes

With a basic shell script and WordPress’s blog-by-email feature, Jon Buys is using WordPress to log user changes to his servers: I decided to start tracking the email alerts with a centralized database. Now, at this point, I could have whipped up my own home-brew frankenstein creation, but since everything I wanted was already built […]

NPR Interns’ Blog Powered by WordPress

National Public Radio’s Spring 2008 intern blog is powered by WordPress, using a somewhat modified version of the default Kubrick theme.

Backporting WordPress Security Fixes

Alex Schleber so dislikes WordPress 2.5 that he’s worked out how to patch version 2.3.3 with 2.5’s security patches instead of upgrading. It’s an approach I would recommend against. For one thing, there’s a good chance that one won’t recognize all of the patches via changelogs, if for no other reason than that sometimes new […]

Managing WordPress from the Command Line

Jon Smajda describes how he backs up and upgrades WordPress, and it’s the way I prefer to do it: using Subversion and mysqldump. I think the best part of his post is this sample backup cron script. With a little tweaking it could be used to back up remotely for best protection, in case, for […]

WordPress Vancouver

Phillip Jeffrey has some good photos and links to the presenters from the recent WordCamp Vancouver. More WordCamps are coming up soon, including one in Milan this weekend.

WordPress Fantastico De Luxe Upgrade to 2.5.1

Jeffro2pt0 points out that Fantastico De Luxe, the fairly popular way of installing WordPress and other applications through your site’s control panel, now allows you to upgrade WordPress to 2.5.1. Personally, I prefer to use Subversion to manage my WordPress sites, but that’s not always available on shared hosts.

WordPress Attacks Mapped

Franklin Veaux has diagrammed a network of compromised sites–including the Boston Public Library’s blog–that are geared towards installing viruses. He notes that there has been a surge of attacks recently against compromised WordPress sites, so the lesson is to be sure that you keep your WordPress version up-to-date. Veaux does link to some of these […]

WordPressDirect.com

It looks like there’s a new WordPress install business that’s geared towards helping people set up business blogs using WordPress. It claims you can set up WordPress for free using its service, so its business model seems to be based on affiliate sales and advertising. However, on signup the site does ask for a PayPal […]

Restoring Your WordPress 2.5 Password in the Database

WordPress 2.5 introduced a much more thorough password-hashing algorithm with PHPass. That is great for security, but I was afraid that it would make restoring your WordPress password in the database almost impossible. You see, prior to 2.5, if you needed to reset your password, you could just hash it using md5 and put it […]

The Right Way to Use JavaScript in Your WordPress Plugin

Ozh explains how to properly use JavaScript in your WordPress plugins. There are two key parts: Use wp_enqueue_script() to load external libraries and standalone scripts, instead of generating your own script header tags. On admin pages, use the admin_print_scripts-[mypage] action hook to register the code on only your plugin’s page, not every admin page. Both […]