software tools to ease your photography workflow
Effective File Sharing
x
Dropbox logo

Are you working on multiple computers, at work, at home, or your laptop? Ever get tired of copying files to share to an USB drive or emailing them to you? I just found the perfect solution, Dropbox.

 
pact Photoshelter slideshow
x

Embed your Photoshelter galleries on any module position of your Joomla website.

The module uses the flash based slideshow widget from Photoshelter. Instead of copy and pasting the code from the Photoshelter website, you can simply copy the gallery url and configure the settings in the module parameters.

 

 

 
optimize Joomla
x

One of the most important factor in user experience of a website is how fast it loads. Of course loading times depend on many factors like;

  • hosting location
  • template used
  • amount of javascript to load
  • size of the css file

In general one can say, the fancier the website looks the longer the loading times will be.

Does that mean you can't use a fancy website? Of course not. The look and feel of a website almost equally important as the content you provide. 

"Users will come back for the content you provide, not to admire your fancy looking website"

Turn off Etag.

Just add the following code to your .htaccess file:

FileETag None
  • Add an Expires header to your web component.

    To add an expires header to images, stylesheets, scripts, Flash, just add the following code to your .htaccess file:

    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresDefault A600
    ExpiresByType image/x-icon A2592000
    ExpiresByType application/x-javascript A604800
    ExpiresByType text/css A604800
    ExpiresByType image/gif A2592000
    ExpiresByType image/png A2592000
    ExpiresByType image/jpeg A2592000
    ExpiresByType text/plain A86400
    ExpiresByType application/x-shockwave-flash A2592000
    ExpiresByType video/x-flv A2592000
    ExpiresByType application/pdf A2592000
    ExpiresByType text/html A600
    </IfModule>
    What does it mean? Well basically you tell how long each specified file/content type should be considered valid. So a browser would know "i downloaded it x seconds ago, so no need to reload it now".
    The "A" is used to indicate that x seconds from Access is specified. It is also possible to use "M" which stands for Modification time. The expires by time is specified in seconds. So you need to do a little math if you want to specify minutes or weeks.
    Here are a few of the more common used times:
    • 600 = 10 minutes
    • 3600 = 1 hour
    • 86400 = 1 day
    • 604800 = 1 week
    • 2419200 = 1 month
    • 29030400 = 1 year = never expires

    This need apache has installed mod_expires. Make fewer HTTP requests

    You can use Joomla Plugin: CssJsCompress to aggregate all JavaScript and CSS files into one file, and use inline image combine all CSS images into a single image file.

  •  
    Photoshelter Archive export plugin for Adobe Lightroom
    x

    Publish directly from Adobe Lightroom to Photoshelter

    Simplify the process of uploading your photos from Adobe Lightroom to your Photoshelter Archive. Manage your archive directly from Lightroom, by creating your archive folder structure and publishing directly to them. All without leaving Lightroom.

     

     

    Version 4.0 of the publish service plugin is available. Compatible with the "new" Photoshelter

    The export plugin is no longer compatible with Lightroom 2. You should consider buying an upgrade to Lightroom 4.

    Features

    • support the new Photoshelter Archive structure with folders and galleries
    • update archive folder structure in publish service
    • try to locate previously uploaded images on publish service creation
    • multiple publish service with different settings
    • update only IPTC data on Photoshelter
    • automatic login
    • publish in selected galleries
    • create new archive folders and galleries
    • rename existing archive folders and galleries
    • mark uploads as "Searchable"
    • publish smart collections to Photoshelter
    • create a publish service for each Photoshelter account you have
    • link publish service to catalog to remember uploads beyond publish service
    • compatible with Adobe Lightroom 3.x and 4.x

    download now

    Developing a useful plugin takes a lot of time. If it proves useful in your workflow please consider a donation to support this plugin.

    Additional information

    LAST_UPDATED2