Our social group has many activities and we generate many images recording them.
We are approaching the limit for storage on our server contract, so we are migrating the imags to a free Flickr account.
As a comparative novice I ran into a few problems, but after a few nudges from ARI Soft's support it is now working. Rather than leave this tread open, here is a wrap up.
First, here is the content of a Joomla! article that displays a gallery based on files in a local folder, clicking on any image starts a slide show.
.
------------------
Code: |
<p>{aricolorbox moduleId="10021"}{/aricolorbox}
{aricolorbox
activeType="imglist"
dir="images/Activities/Picnics/IMAGES/2013_09_25"
generateThumbs="1"
thumbWidth="70"
thumbHeight="70"
thumbType="resize"
type="gallery"
itemCount="4"}
{/aricolorbox}</p>
|
------------------
Conversion to using Flickr
1) You must have a Flickr API key (a string of digits and characters) and a 'secret key' string as well. Think of it as an account and a password. You get it by going to the Flickr site, and at the bottom of the page find the link for AP Garden and within that click on Get API key. Fill in the appropriate form - non-commercial or ommercial to get your keys.
2) In Joomla! Control Panel -> Extensions -> Plug-in Manager
Filter: Anywhere -> Search
Select and edit "System - ARI Colorbox Anywhere"
On the right, scroll down and find "Choose type:" and select "Flickr gallery" from the drop down.
Paste in your Flickr API key
Paste in your Flickr secret key
You may leave the Flickr token empty.
Save and Close the plug-in form.
3) Connect to your Flickr account
Upload your images into a "SET".
Display the set as a slide show and copy the URL from the browser address bar to the clipboard. It will look like the following.
Note: I have obfuscated values by substituting "x"s for digits/
www.flickr.com/photos/11xxxx78@N00/sets/7215xxxxxxxxx4495/
4) Create your Joomla! article to reference the gallery. Be sure to be in "plain text" mode, not the WYSIWYG editor mode.
----------------------
Code: |
<p>{aricolorbox activeType="flickr" source="photoset"
userId="11xxxx78@N00"
photosetId="7215xxxxxxxxx4495"
thumbWidth="70" thumbHeight="70" thumbType="resize"
type="gallery" itemCount="4"}
{/aricolorbox}</p>
|
-----------------------
By specifying the activeType in both articles rather than rely upon the default, it is possible to have both types active in the site, which makes migration simple.