Skip to content
This repository has been archived by the owner on Sep 27, 2022. It is now read-only.

Installation and Configuration

imageaid edited this page Jan 7, 2011 · 2 revisions

##Installation## Install the plugin.

  • Download a Zip archive of the plugin on github at github.com/imageaid/SimpleFlickr.
  • Rename the archive to: "SimpleFickr-0.2.5.zip" (no quotes).
  • Drop the archive into your Wheels plugins folder.
  • Restart or reload Wheels.

##Configure## Configure access to the Flickr API. In your application configuration file (i.e., config/settings.cfm), set the following variables.

<cfscript>
loc.flickr = {};
// other options are available ... see Flickr API for details. I prefer REST. This is an optional setting. 
loc.flickr.flickrURL = "http://api.flickr.com/services/rest/"; 
// check http://idgettr.com/ if you don't know what this value is
loc.flickr.flickrUserID = "MY FLICKR USER ID";
set(flickr=loc.flickr);
</cfscript>