Fix for TanTan Flickr & Reports Plugin on WordPress 2.3

September 28th, 2007 · 3 Comments


Earlier this week WordPress 2.3 was released, and I was quick to upgrade. However it seems two of the plug ins I use on my blog had problems with the new version of WordPress. Both Plug ins were produced by tantannoodles.com / silaspartners.com

Flickr Photo Album for WordPress This needed a line commented out and replaced with an alternative. in the file:

wp-content/plugins/siliaspartners/flickr/admin-options-load.php

Make the following update around line 15.


//changed since WP2.3
//require_once(dirname(__FILE__).$tmpPath.'/wp-admin/admin-db.php');
require_once(dirname(__FILE__).$tmpPath.'/wp-admin/includes/user.php');

Likewise TanTans Google Analytics and Feedburner reports required a similar update. It to referenced the wp-admin/admin-db.php file that has been removed in WordPress 2.3.

in the file:


wp-content/plugins/tantan/wordpress-reports/tantan-reports-load.php

Make the following update around line 14.


//changed since WP2.3
//require_once(dirname(__FILE__).$tmpPath.'/wp-admin/admin-db.php');
require_once(dirname(__FILE__).$tmpPath.'/wp-admin/includes/user.php');

These 2 fixes have been mentioned in other locations but I needed to dig through comments to find them on the TanTan Reports Page and also on the TanTan Flickr Forum Page.

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • bodytext
  • del.icio.us
  • Reddit
  • StumbleUpon
  • Technorati
  • NewsVine
  • Facebook
  • Google
  • TwitThis
  • e-mail
  • Pownce
How about donating a coffee, beer or even a round of beers for my efforts here? Thats around £2.50 for a coffee or a pint or about £10 for a round of beers. Cheers!

Tags: BitTube Work · Development · WordPress

3 responses so far ↓

Leave a Comment