IntenseDebate reopens after Automattic acquisition, new WordPress plugin available

By: Sophia Lucero | November 15, 2008 | No Comments Yet

IntenseDebate reopens after going invite-only since its acquisition by Automattic. So for those who haven’t signed up for an account, now you can.

And of course, they’ve made it especially easy to use for WordPress users with a new beta plugin, with the following features:

  • Two-Way Comment Sync (comments are saved both in your WordPress database and the IntenseDebate server)
  • Admin Panel Integration
  • Search Engine Optimization
  • Trackbacks
  • Profile Sync
  • Post Settings

And more:

Can’t wait to get hold of all the great commenting features included in WordPress 2.7? Get IntenseDebate now!

Leave a Comment | Tags: , , , , , , , , ,

WordPress Plugin: WordPress Exploit Scanner

By: Sophia Lucero | June 27, 2008 | No Comments Yet

With all the talk about WordPress security vulnerabilities, every bit of protection helps. The WordPress Exploit Scanner plugin does just what it says: it looks for any suspicious behavior in your WordPress files and database tables.

This WordPress plugin searches the files on your site for a few known strings sometimes used by hackers, and lists them with code fragments taken from the files. It also makes a few checks of the database, looking at the active_plugins blog option, the comments table, and the posts table.

It also allows the blog owner to search for whatever string they like which could come in handy when new exploit code is used in a hack.

Download WordPress Exploit Scanner

Leave a Comment | Tags: , , , , , ,

Moving Your WordPress Blog From One Host to Another

By: Sophia Lucero | March 5, 2008 | No Comments Yet

We’ve changed URLs from WordPress.PH to WordPressPhilippines.org. So now if you’ll be visiting the old URL, you’ll end up here—hopefully instantly. It was a pretty painless process, which is one of the strong points of having a WordPress-powered site. Here are some pointers when moving your WordPress installation from one server to another:

Backup

There is not one word more important than “backup” when we talk about websites. (Computers in general, actually, but that’s another matter altogether.) You should be backing up your files regularly, but this time make one final backup before the move. Remember, you need to backup the database in which all your posts are stored and you need to backup the files which are used to run your website.

Restore

Restoring your database and files is the converse of backing up, with one difference: you have to update your account details like the database name, database user, database password, and the server path in several places for your new site to work properly.

  1. Create a new database which will hold your old data. It can be a new database name, database user, and database password—or not. Just remember the database details for later on.
  2. Import your data to the new database.
  3. Enter your new database details into your wp-config.php file—if you have changed them.
  4. Upload your site files to your new server.

Find and Replace

Because the old WordPress Philippines URL is embedded within our blog posts and comments, we had to look for every single one and change each to the new URL. Doing it manually inside a database environment is tedious and scary, depending on your expertise:

  1. Replace: old server path with new server path in wp_options
  2. Replace: old URL with new URL in wp_posts, wp_comments, wp_options, etc.

You can skip the 2nd step and do it later using the Search and Replace plugin, once your site is working properly.

Redirect

Tell Google and other search engines you’ve moved with two steps. First, edit your .htaccess file and add this:

redirect 301 / http://www.yournewsite.com/

Second, open your robots.txt (or create one if non-existent) and enter this:

User-agent: *
Disallow: /

Notify

Finally, let your friends know you’ve moved. They’ll probably notice the change of URL because of the redirect, but a letting them know won’t hurt. If you’ve submitted your site to pinging services and blog directories, be sure to change the URLs there as well.

Consider this a new opportunity to “relaunch” your blog.

Leave a Comment | Tags: , , , , ,