Home » General, PHP, Wordpress

Crawl Rate Tracker and Wordpress 2.5 Manual Fix

Submitted by Kieran on Tuesday, 22 April 20086 Comments

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:

  1. Crawl Rate Tracker and Wordpress 2.5
  2. Crawl Rate Tracker Plugin for Wordpress25
  3. Really freakin’ simple mysql virtual hosting pure-ftpd
  4. CubeCart and Wordpress Integration
  5. Single Line Wordpress Install

6 Comments »

Leave your response!

Add your comment below, or trackback from your own site. You can also subscribe to these comments via RSS.

Be nice. Keep it clean. Stay on topic. No spam.

You can use these tags:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="">

This is a Gravatar-enabled weblog. To get your own globally-recognized-avatar, please register at Gravatar.

Related Posts


Fatal error: Call to a member function have_posts() on a non-object in /home/blokeor/public_html/wp-content/themes/arthemia-premium/single.php on line 110