Crawl Rate Tracker and Wordpress 2.5 Manual Fix
Posted on April 22, 2008
A quick update on people that need the Crawl Rate Tracker to work with Wordpress 2.5 - just create the table manually.
I used phpMyAdmin to manually create the table in the required blog databases.
If you are planning on doing this, make sure you add you table_prefix if required. Double check what $table_prefix is set to in wp-config.php. Chances are it is "wp_" and you don't need to change the code below.
CREATE TABLE `wp_sbtracking` ( `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` ) );
Simple fix.
Perhaps I might bodge together a working version of sbtracking-setup.php some time soon.
Related posts:
- Crawl Rate Tracker and Wordpress 2.5
I really like Patrick Altoft's Crawl Rate Tracker Plugin for Wordpress. I rolled it out... - Crawl Rate Tracker Plugin for Wordpress25
Patrick Altoft has updated the Crawl Rate Tracker Plugin for Wordpress 2.5. A previous post... - Really freakin’ simple mysql virtual hosting pure-ftpd
This article will guide you through installing pure-ftpd configured for virtual hosts using mysql as... - CubeCart and Wordpress Integration
Following my 100% CubeCart orientated posts, here's another late night hack. It integrates a Wordpress... - Single Line Wordpress Install
I'm getting a pro at installing Wordpress now.I'm trying to cut down my install time...
July 5th, 2008 - 19:51
May 30th, 2009 - 13:25
Если не секрет, автор откуда родом?
July 20th, 2009 - 03:27
It works with WP 2.7 without any fixes. And I like it!