

    * Author: Fredrik Fahlstad
    * Version: 0.2
    * Last updated: 2006-04-04

Description

WordPress image gallery plugin which seamlessly intergrates with WordPress. Administration page for uploading files and managing galleries integrated in the WordPress administration area. Supports gif, jpg and png images.
Requirements

    * Only tested with Wordpress 2+
    * GD library
    * Diffrent from many other image galleries for WordPress this one does not require PHPs safe_mode: on.
    * ZZIPlib for zip uploading

Notes

fGallery is still in beta, so any feedback and bug reports is greatly appreciated. If your site look funny after installation, take a look in the FAQ section below.
Installing

   1. Unzip to wp-content/plugins/fgallery.
   2. Create wp-content/fgallery for the images, chmod 777.
   3. chmod 775 css/fim_style.css, to make it edible.
   4. Go to WP admin->plugins and activate fGallery.
   5. Add a new link to your site to view the photos.
          * Example http://www.mydomain.com/wp-content/plugins/fgallery/fim_photos.php.
          * Or if you are using famncy URL:s http://www.mydomain.com.
   6. If you updating from erlier version, deactivate and activate.

Manage galleries

Gallery managenent is performed through WP admin->fGallery->Manage galleries. Here you can create galleries/delete galleries and edit images.
Upload images

Image uploads is performed through WP admin->fGallery->fGallery.
Edit CSS

CSS editing is performed through WP admin->fGallery->Edit CSS. Just edt the css and press Update css, or reset all css to default by pressing Reset CSS.
Showing images in the sidebar

Random images regardless of gallery:
Add
<?php fim_random_images($number_to_show, $thumbnail_width);?>

Somewhere in your sidebar.php.

Latest images regardless of gallery:
Add
<?php fim_get_latest_images($number_to_show, $thumbnail_width);?>

Somewhere in your sidebar.php.

Example:
If you want to show the 5 most recent images 64 pixels wide in the sidebar the code would look like this:
<h2>Latest images</h2>
<?php fim_get_latest_images(5, 64);?>
Options

Changing options is performed through WP admin->fGallery->Option.

Options description:

    * Use nice urls:Tick if you want nicer urls.
    * Resize images: Tick if you want fGalleryto resize uploaded images.
    * Thumbnail size: Size of thumbnails.
    * Image size: Size to resize images if Resize images is choosen.

Availble languages

    * Swedish - By Fredrik Fahlstad
    * English - By Fredrik Fahlstad

fGallery history

2005-04-05: Version 0.2.

    * Fixed the problem with image scaling.
    * Added fancy URL:s.
    * Added multiple file uploads
    * Added upload by zip (Requires ZZIPlib )
    * Every album has its own folder.
    * Changed the image folder to wp-content/fgallery
    * Fixed some PHP5 bugs
    * Multiple words in gallery names.

2005-03-18: fGallery version 0.1.
FAQ

Q: My site looks funny after installation.
A: This probably has to do with the theme you are using. If you take a look in header.php you probably see:
<div id=content>

Move this line to index.php just under where it says:
<?php get_header(); ?>
