Crawl Rate Tracker and WordPress 2.5
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.

Comments
Read the 2 comments below, or add your own!
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
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 )
);