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.
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.
You can get our blog posts delivered for free by email every day - simply add your email address to the box below or alternatively grab the RSS feed.







{ 2 comments… read them below or add one }
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 )
);
Leave a Comment (registration is optional)