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.


















3 responses so far ↓
1 Louis // Oct 2, 2007 at 8:29 pm
I have a database connexion error with the Reports plugin, but anyway your fix is noteworthy.
Thanks !
2 Keith // Oct 5, 2007 at 7:11 pm
Thanks for the tip. It is nice to be able to utilize this plugin in Wordpress 2.3.
3 TanTan flickr photo gallery broken after upgrade to Wordpress 2.3 at [ t h e f r a g g l e . c o m ] // Oct 27, 2007 at 8:31 pm
[...] quick google search showed me a couple of resources, that told me where I needed to make a slight alteration to the source of my flickr plugin [...]
Leave a Comment