OVERVIEW
WordPress Flickr Manager is an easy to use plugin that seamlessly integrates your Flickr account with your WordPress backend.
WHAT’S NEW IN VERSION 3
- Flash Uploader:
Upload multiple photos straight to Flickr from your blog!
- Video Support
- More javascript overlays
- New easy to use browse panel:
EXAMPLE
[flickrset id=”72157603240620422″ thumbnail=”thumbnail” photos=”” overlay=”true” size=”medium”]
HOW TO USE
- Upload the folder “wordpress-flickr-manager” to the “/wp-content/plugins/” directory
- Activate the plugin through the “Plugins” menu in WordPress
- Authenticate with Flickr through “Settings->Flickr”
DOWNLOAD
CHANGE LOG
- 3.0.1 – 29/04/11
- Fixed error with Flickr caching
- Added option to use File system or Database caching
- Fixed issue with the Media Panel not searching and saving photos correctly
- 3.0 – 28/04/11
- Updated support for WordPress 3.1.2
- Javascript overlay framework
- Revamped settings page
- Cleaned up code
- Added video support HTML5 / Flash
- Changed media panel to use AJAX interface
- 2.3 – 23/02/09
- Fixed several security vulnerabilities
- Redesigned media panel layout
- Changed method for inserting image
- Added option to hide copyright information while browsing
- 2.2 – 22/01/09
- Added an option to hide your private photos
- Added an option to disable the image viewer entirely
- Upgraded insertion tags to conform with the WordPress shortcode API
- Added a new widget that displays the recent photos from your Flickr stream
- Rewrote the upload system for better integration with WordPress
- Now completely supports fopen, cURL is no longer a necessity
- Search function as been improved for more accurate results
- Redesigned the UI for a more user friendly experience.
- 2.1.1 – 8/01/09
- Fixed bug when inserting sets
- Added an option to include a link to the Flickr page inside the lightbox / highslide caption
- Upgraded highslide to 4.0.10
- Highslide photoset support is now implemented
- 2.1 – 1/01/09
- Updated for internationalization
- Revamped media button interface
- Bug fixes
- WordPress 2.7 compatible
- Added Spanish language pack
SUPPORT
As of version 2.0.0 onwards I’m going to try and set up a knowledge base of information.
It’s available at http://support.trentgardner.net
LOCALIZATION
A Launchpad translation project has been setup: Click here to view a list of all currently available translations. Very briefly, Launchpad will enable a community of translators to help translate the plugin into whatever language is needed.
How to translate with Launchpad
- Setup a Launchpad.net account.
- Select your preferred languages. This will be the language you want to translate.
- You should see your language show up in this list. Simply click the name to get started with the translations. The system will try to offer suggests where available (retrieved from other open source projects).
- Your translations are saved as you proceed. When it comes time to package a release, your translation will be automatically included in the release for everyone to use. Thanks for your help!
me again. after I activated the Jetpack in WordPress I just get a big black quarter instead of the thumbnails. So I installed again the 1.5.5 version, that worked well all the time. but still the same problem. thumbnails not in line (1 picture one 1 line) and I can’t pop up them for larger size. I just have a waiting bar that never stops. was also when I had installed the newest version, I forgot the mention above.
So now everything is buggy and I can’t use any version and have a messed up blog. help!
thanks in advance :).
I’m having a problem where I can post flickr sets but when I try and post individual images I just get a black box.
The shortcode inserts but the result is just this black box.
Great Plugin …
But I want to be open Flickr in a new window. Where do I change this?
Hi, Trent – please help me!
I have installed 3.0.1 and when trying to “Add media files from (my) computer” (“Upload”), the manager simply loads a blank page.
I have looked in your bug section and can’t find anything related to my problem.
Much appreciated
Peter
I tried to upload image it came up with this error:
Fatal error: Call to undefined function __deprecated_function() in /home/alicia89/public_html/wp-admin/includes/deprecated.php on line 824
i used:
WP 3.3.1
Thanks is advance.
Hi all.. anybody knows how to add 1px border for all images?
Hi there. Great plugin but I’ve just upgraded to WP 3.3.1 and it appears that WP Flickr Manager makes calls to (now) deprecated functions (deprecated in WP 3.2). I can view my flickr feed but am unable to upload any images. The deprecated routines called appear to relate to the media library. I get an error message displayed in the uplaod screen of the plugin. I just wondered if you planned on a new release any time soon? I’ve used the plugin for a while since it’s the only one I could find that can upload to flickr.
Cheers,
— Matt
Hey guys,
great wordpress plugin!
But I have the following problem…
When i go to “Upload” i get this message: “Fatal error: Call to undefined function __deprecated_function() in /wp-admin/includes/deprecated.php on line 824”
I use WordPress version 3.3.1 and the recent version of Flickr Manager. Can you help me to fix the problem?
Thanks a lot!
Greetz› vtronic
Hiya!
Just a word to tell you that the link to download the plugin is not working and that the plugin on wordpress repository is the version 1.5 😉
thanks
Catherine
Hello,
I have used the Flickr manager plugin on a few sites and it is a really great plugin. I went to download it today and the download link no longer works and it doesn’t seem to available from WordPress. Has development been discontinued?
Thanks,
Gretchen
the links now shoing 404 errors
on wordpress.org also only showing the old 1.5.1 ver 🙁
I got a 404 error when I wanna download the plugin!
Pingback: wordpress flickr
Hi,
Download link:
404 File not found
Download link is not working. Could you please fix it. It says the file is missing.
Trent you should charge for this plugin.
I’d pay $10.
I get this. It used to work. Latest v of WP.
npacking the package…
The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature
Hello Trent,
I still can’t figure out why you prefer short code rendering than directly using static url of the image from flickr.
Please feel free to give me some hint!
The upload feature doesn’t seem to work with the latest versions of WordPress. I get the following Error.
Fatal error: Call to undefined function __deprecated_function() in {bunch o crap}/wp-admin/includes/deprecated.php on line 839
This plug in is near perfect to what I have been looking for!!
Hello,
I had a problem with Flickr Api Key, the plugin was working for two years, and it suddenly stopped and asked me to authenticate. It was because Flickr changed http to https on 27 June 2014
http://code.flickr.net/2014/04/30/flickr-api-going-ssl-only-on-june-27th-2014/
I have not many knowledges about code but I could find a solution, and it works
I changed the archive
inc.flickr.php
Look for:
var $rest_endpoint = ‘http://api.flickr.com/services/rest/’;
var $upload_endpoint = ‘http://api.flickr.com/services/upload/’;
var $replace_endpoint = ‘http://api.flickr.com/services/replace/’;
You need change to:
var $rest_endpoint = ‘https://api.flickr.com/services/rest/’;
var $upload_endpoint = ‘https://api.flickr.com/services/upload/’;
var $replace_endpoint = ‘https://api.flickr.com/services/replace/’;
And look for:
if ( !preg_match(“|http://(.*?)(/.*)|”, $url, $matches) ) {
You need change to:
if ( !preg_match(“|https://(.*?)(/.*)|”, $url, $matches) ) {
After you can go to plugin settings and you need to authenticate again and configure it… but it works again 🙂
Help, the Flickr API key doesn’t work anymore !