Crawl Rate Tracker and WordPress 2.5

by Patrick Altoft on / 2 responses

Just to keep you updated on the Crawl Rate Tracker issues with WP2.5 it seems the problem is with the plugin installer rather than the way it works once installed.

Update: click here to download the new version.

Basically when the plugin is first activated it creates a database to store the crawl details in. For some reason in WP2.5 this isn’t happening and nobody can figure out why.

In the meantime you can just create the database table manually or copy it over from your old installation if you want to use the plugin with WP2.5 right away.

Patrick Altoft is Director of Search at Branded3, a Leeds SEO & Digital Agency specialising in SEO, Web Design, Development & Social Media.

Get daily posts direct to your inbox

You can get our blog posts delivered for free by email every day - simply add your email address to the box above, or alternatively you can grab the RSS feed.

Comments

Read the 2 comments below, or add your own!

June 11, 2008 at 7:42am

can you help me out please?

can you convert this code into straight mysql?

$sql = “CREATE TABLE `” . $sbtracking_table . “` (
`id` INT NOT NULL AUTO_INCREMENT ,
`robot_name` VARCHAR( 100 ) NOT NULL ,
`page_url` VARCHAR( 250 ) NOT NULL ,
`visit_time` INT NOT NULL ,
PRIMARY KEY ( `id` )
);”;

thx

Reply

June 11, 2008 at 7:45am

sorry I guess I already found out, care to confirm?

CREATE TABLE wp_pac_sbtracking_table(
id INT NOT NULL AUTO_INCREMENT ,
robot_name VARCHAR( 100 ) NOT NULL ,
page_url VARCHAR( 250 ) NOT NULL ,
visit_time INT NOT NULL ,
PRIMARY KEY ( id )
);

Reply

Leave a comment

Your email address will not be published. Fields marked with an asterisk are required.
 

  *

  *

You can use one of the following tags:
<a href=""><blockquote><code><em><strike><strong>