Since the 3.0.2 update, I'm unable to activate the plugin. It just stays grey in the extensions page.
Since I'm a heavy user of this plugin, I had to switch back to 3.0.1 to have it working again...
Since the 3.0.2 update, I'm unable to activate the plugin. It just stays grey in the extensions page.
Since I'm a heavy user of this plugin, I had to switch back to 3.0.1 to have it working again...
I am having this exact same issue.
same problem here
There's a fix over on flickr.
FILE: tantan-flickr/flickr/class-admin.php
Change add_action to register_activation_hook function as follows.
add_action('admin_menu', array(&$this, 'addhooks'));
//add_action('activate_tantan-flickr/flickr.php', array(&$this, 'activate'));
register_activation_hook(__FILE__, array(&$this, 'activate'));
//add_action('deactivate_tantan-flickr/flickr.php', array(&$this, 'deactivate'));
register_deactivation_hook(__FILE__, array(&$this, 'deactivate'));
add_action('load-upload.php', array(&$this, 'addPhotosTab'));Still doesn't help. Still not very clear. Can someone please walk me through it. Thanks.
Open up /plugins/tantan-flickr/flickr/class-admin.php
line 16&17 should look like this:
add_action('activate_tantan-flickr/flickr.php', array(&$this, 'activate'));
add_action('deactivate_tantan-flickr/flickr.php', array(&$this, 'deactivate'));
Change it to this:
register_activation_hook(__FILE__, array(&$this, 'activate'));
register_deactivation_hook(__FILE__, array(&$this, 'deactivate'));
Hope this helps.
Your'e the man. I thought it was that but the term "FILE" made me think I had to put something in there. Stupid me. Thank you and a very Merry Christmas.
Great, it works! Thank you so much.
Great! Thanks for the solution!!!
This fine blog has a fixed file already for you
http://www.roopedog.com/2011/01/cant-activate-tan-tan-flickr-manager-plugin-wordpress/
This topic has been closed to new replies.