Crawl Rate Tracker and Wordpress 2.5 Manual Fix

April 22nd, 2008
No Gravatar

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.

Bookmark it del.icio.us | Reddit | Slashdot | Digg | Facebook | Technorati | Google | StumbleUpon | Window Live | Tailrank | Furl | Propeller | Yahoo


Was this post useful to you? Let me know, buy me a beer!
Alternatively, if you're feeling impecunious, you may like to subscribe to my RSS feed, or see other articles in the General, PHP, Wordpress category.

4 Responses to “Crawl Rate Tracker and Wordpress 2.5 Manual Fix”

  1. Wordpress 2.5 & Crawl Rate Tracker Plugin Screws Site SERPS - Hobo SEO UK Says:

    [...] Update - There is now a fix, apparently at Bloke. [...]

  2. почти 2250 блогов пострадали при переходе на wordpress 2.5 | wpbox.ru Says:

    [...] вручную создать таблицу в БД, как показано тут [...]

  3. Blogissimo - Blogger bloggen in Blogs » wp_sbtracking’ doesn’t exist - WP 2.5 vs. Crawl Rate Tracker Plugin Says:

    [...] Über folgenden Link gibt es eine Lösung um das Problem zu fixen bloke.org [...]

  4. http://remont-komplekt.ru/No Gravatar Says:

Leave a Reply