Single File PHP Gallery 4.1.1 (SFPG) See END USER LICENSE AGREEMENT for commercial use Released: 20-August-2011 http://sye.dk/sfpg/ By Kenny Svalgaard ____________________________________________________________ WHAT IS IN THIS FILE * WHAT IS IN THIS FILE (You are here :-) * WHAT IS SINGLE FILE PHP GALLERY? * END USER LICENSE AGREEMENT / EULA * FEATURES * REQUIREMENTS * HOW TO USE / QUICK START * TIPS / FAQ * SUPPORT / REQUESTS / HELP / CONTACT * KNOWN ISSUES * CONFIGURATION INFORMATION ____________________________________________________________ WHAT IS SINGLE FILE PHP GALLERY? Single File PHP Gallery is a web gallery in one single file. All you have to do is copy the script to any directory containing images to make a gallery. Sub directories will be sub galleries. Thumbnails for images and directories are generated automatically. Descriptions for galleries and images can be added by making a simple text file. Single File PHP Gallery does not require any configuration or programming skills to use. You can see how it looks in the online demo here: http://sye.dk/sfpg/ ____________________________________________________________ END USER LICENSE AGREEMENT / EULA For private non commercial use Single File PHP Gallery can be used for free. When used commercially a donation for at least 10$ must be made per domain where it is used. You are of cause still more than welcome to donate if you like the gallery, even though you only use it privately. Under no circumstances can Single File PHP Gallery or any part of it be distributed or sold, or be part of another work that is being distributed or sold. Making a donation: Domain name must be clearly stated in the donation, otherwise the donation will not grant use of the script under donating conditions. Donations are not refundable. Use the PayPal donate button on the page for donations: http://sye.dk/sfpg/ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ____________________________________________________________ FEATURES * Free for private non commercial use * Very simple Plug'n'Play like ease of use * Uses no Database * Automatically creates thumbnails * Option to create and use intermediate preview images * Displays EXIF information * Rotates/corrects orientation of images using EXIF information * Option to add watermark to all images in gallery * Supports JPG, JPEG, PNG and GIF * Unlimited numbers of sub galleries * See configuration information for all features ____________________________________________________________ REQUIREMENTS For this gallery to function you will need the following: * A web server capable of running PHP 5 scripts * The PHP GD library (php_gd) installed. See here for information: http://php.net/gd * PHP write access to server * PHP memory limit large enough to contain both full size image and preview/thumb (converted to BMP) See the FAQ section for further information on this. ____________________________________________________________ HOW TO USE / QUICK START The only thing you have to do is place a copy of the index.php file to any directory of your web. When this is done all images (jpg, jpeg, png, gif) and files if enabled, in that directory and all sub directories will be shown in the gallery. By default the script will try to create a folder called "_sfpg_data" in which thumbnails, previews and information is saved. This can be changed using the DATA_ROOT constant. If PHP only have write access in a certain folder, change the DATA_ROOT to point there. ____________________________________________________________ TIPS / FAQ * If some or all thumbnails is missing or show up as a red X, the reason could be that the full images is too big for the php-engine to load them into memory. You will then have to do one of the following: 1. Make the full images smaller 2. Increase the memory_limit in php.ini. (If the memory_limit is 8MB, it gives a maximum image size on about 1600*1600) * If no thumbnails or images show, it could be that the script does not have the php tag " "pdf.png"); Example 2: array(".pdf" => "pdf.png", ".zip" => "zip.png"); In example 1, an image called "pdf.png" have been created and placed in the "_sfpg_icons" directory in the GALLERY_ROOT. This will make all PDF files have the given image as thumbnail. TIP: You do not have to resize the image, it will be resized like all other images in the gallery. ____________________________________________________________ define("LINK_BACK", ""); Set a URL to show a button that will function as a link to the set URL. This can be used as a "Back to my site" button. Set to "" to not show the button. Example 1: Set to "/" to have button take you to the root of your web. Example 2: Set to "http://www.yoursite.com/page.html". See TEXT_LINK_BACK for the text on the button. ____________________________________________________________ define("CHARSET", "iso-8859-1"); Set the charset to be used. In order to have special chars display correctly, a charset that support the chars used in the gallery, must be set. Below is a short list of charsets that can be used (use a search engine on the Internet for others): Universal Alphabet: "utf-8" Western Alphabet: "iso-8859-1" Central European Alphabet: "iso-8859-2" Latin 3 Alphabet: "iso-8859-3" Baltic Alphabet: "iso-8859-4" Cyrillic Alphabet: "iso-8859-5" Arabic Alphabet: "iso-8859-6" Greek Alphabet: "iso-8859-7" Hebrew Alphabet: "iso-8859-8" Japanese: "shift-jis" Chinese Traditional: "big5" ____________________________________________________________ define("DATE_FORMAT", "Y-m-d h:i:s"); Set the format of the date/time to be shown after the TEXT_DATE. See a PHP manual or the following page for information on the date format: http://php.net/date ____________________________________________________________ define("DESC_EXT", ".txt"); Set the extension of the description files. Place a file with the same name as an image or file with the set extension added to the image name, to have the text shown with the image or file. Case sensitivity in this constant follows the case sensitivity of the server on which the script runs. Extensions should be entered with a dot in front, like the example below. Example: If set to ".txt" and one of the images is named "IMG_10a.jpg". You can then make a file called "IMG_10a.jpg.txt", and place it in the same folder as the image. If SHOW_FILES is set to TRUE you can use $file_ext_exclude to exclude the description files from the view. So if you would like to list .txt but don't want the descriptions files shown, you should set to any other extension that you do not use (feel free to use ".sfpg") and exclude that one using $file_ext_exclude. ____________________________________________________________ define("SORT_DIVIDER", "--"); Set the string that will function as a divider between the part of the name to sort after and the name to be shown. SORT_DIVIDER works on directories, images and files. Example: If you have a directory called "Apples" and one called "Bananas", and would like "Bananas" to be the first one on the list. You could then call them: "001--Bananas" and "002--Apples". The directories will then be listed in the order you like, and only the text after the SORT_DIVIDER string will be shown. ____________________________________________________________ define("SORT_NATURAL", TRUE); Set to TRUE to have directories, images and files sorted in a case insensitive "natural order". Set to FALSE to have elements sorted normally. See here for information: http://php.net/natcasesort ____________________________________________________________ define("FONT_SIZE", 12); Set the Font size. ____________________________________________________________ define("UNDERSCORE_AS_SPACE", TRUE); Set to TRUE to have names shown as spaces. Set to FALSE to have names shown as is. Works on directory, image and file names. ____________________________________________________________ define("NL_TO_BR", FALSE); Set to TRUE to have the script add a HTML line break (BR) where line breaks is found in the description files. Works on descriptions for directories, images and files. ____________________________________________________________ define("THUMB_MAX_WIDTH", 160); Set the maximum number of pixels a thumbnails width may be. If thumbnails have been saved on server you will have to delete them in order to have changes to this setting apply. ____________________________________________________________ define("THUMB_MAX_HEIGHT", 120); Set the maximum number of pixels a thumbnails height may be. If thumbnails have been saved on server you will have to delete them in order to have changes to this setting apply. ____________________________________________________________ define("THUMB_ENLARGE", FALSE); Set to TRUE to have thumbnails for images that is smaller than THUMB_MAX_WIDTH and THUMB_MAX_HEIGHT enlarged. Set to FALSE to have thumbnails for images that are smaller than THUMB_MAX_WIDTH and THUMB_MAX_HEIGHT stay the size they are. ____________________________________________________________ define("THUMB_JPEG_QUALITY", 75); Set the quality for jpeg thumbnails. Range from 0 (worst quality and smallest file size) to 100 (best quality and largest file size). If thumbnails have been saved on server you will have to delete them in order to have changes to this setting apply. ____________________________________________________________ define("USE_PREVIEW", FALSE); Set to TRUE to have the script generate intermediate preview images. The preview images will be shown when a thumbnail is clicked, and a "Full resolution" button will be enabled to allow switching between full resolution and preview. The preview images are generated when accessed for the first time, and will be saved on the server for later usage. Set to FALSE to not use intermediate preview images. This option is useful if the gallery contains large images that will take long time to load. ____________________________________________________________ define("PREVIEW_MAX_WIDTH", 600); Set the maximum number of pixels a preview image width may be. If preview images have been saved on server you will have to delete them in order to have changes to this setting apply. ____________________________________________________________ define("PREVIEW_MAX_HEIGHT", 400); Set the maximum number of pixels a preview image height may be. If preview images have been saved on server you will have to delete them in order to have changes to this setting apply. ____________________________________________________________ define("PREVIEW_ENLARGE", FALSE); Set to TRUE to have preview images for images that are smaller than PREVIEW_MAX_WIDTH and PREVIEW_MAX_HEIGHT enlarged. Set to FALSE to have preview images for images that are smaller than PREVIEW_MAX_WIDTH and PREVIEW_MAX_HEIGHT stay the size they are. ____________________________________________________________ define("PREVIEW_JPEG_QUALITY", 75); Set the quality for jpeg preview images. Range from 0 (worst quality and smallest file size) to 100 (best quality and largest file size). If preview images have been saved on server you will have to delete them in order to have changes to this setting apply. ____________________________________________________________ define("WATERMARK", ""); Set the filename of the image that is to be used as watermark on all images in gallery. This will make all images, preview images and thumbnails contain the watermark in the lower right corner of the image. To use this option you must: 1. Create a directory called "_sfpg_icons" in the GALLERY_ROOT. 2. Place the image that is to be used as watermark in the directory. 3. Add the name of the image to the WATERMARK constant. Example: define("WATERMARK", "watermark.png"); In the example above, an image called "watermark.png" have been created and placed in the "_sfpg_icons" directory in the GALLERY_ROOT. INFO 1: If set, all images containing watermark will be cached in the DATA_ROOT. Depending on the set IMAGE_JPEG_QUALITY, this could take up the same or more space than the original images in GALLERY_ROOT. INFO 2: If set or changed after images, thumbnails or preview images have been created, then all thumbnails need to be deleted from the DATA_ROOT in order to have new images including watermark created. INFO 3: Case sensitivity in this constant follows the case sensitivity of the server on which the script runs. The watermark image will not be resized. It will be be applied in the original size. ____________________________________________________________ define("INFO_BOX_WIDTH", 250); Set the width in pixels of the information box. If thumbnail size is increased, this probably also needs to be increased. ____________________________________________________________ define("MENU_BOX_HEIGHT", 70); Set the height in pixels of the menu box. If font size is increased, this probably also needs to be increased. ____________________________________________________________ define("NAV_BAR_HEIGHT", 25); Set the height in pixels of the navigation bar. If font size is increased, this probably also needs to be increased. ____________________________________________________________ define("THUMB_BORDER_WIDTH", 1); Set the number of pixels for the thumbnail border width. ____________________________________________________________ define("THUMB_MARGIN", 10); Set the number of pixels that the thumbnail box should be larger than the thumbnail all the way round. ____________________________________________________________ define("THUMB_BOX_MARGIN", 7); Set the number of pixels the thumbnail boxes margin should be. The thumbnail boxes will be two times the set number apart. ____________________________________________________________ define("THUMB_BOX_EXTRA_HEIGHT", 14); Set the number of pixels that will be added to the thumbnail boxes height. This would normally be a little larger than the set font size. So if the font size is increased, this probably also needs to be increased. If THUMB_CHARS_MAX is set to 0, to not show thumbnail names, this should also be set to 0. ____________________________________________________________ define("THUMB_CHARS_MAX", 20); Set the maximum number of chars that will be printed below thumbnails. Set to 0 to not show thumbnail names. If set to 0 THUMB_BOX_EXTRA_HEIGHT should also be set to 0. ____________________________________________________________ define("FULLIMG_BORDER_WIDTH", 5); Set the number of pixels for the border width of the full image. ____________________________________________________________ define("NAVI_CHARS_MAX", 100); Set the maximum number of chars that will be printed in the navigation bar. When the navigation path gets longer than the set number, then the first links/buttons will be replaced with "..." ____________________________________________________________ define("OVERLAY_OPACITY", 90); Set the opacity percent for the overlaying layer that hides the thumbnails when a full image or preview image is shown. Set to 0 to have the layer be invisible. Set to 100 to have a solid color. ____________________________________________________________ define("FADE_FRAME_PER_SEC", 30); Set the number of changes per second when fading images. Setting this high will make the fade more smooth, but will also be harder on slow machines. ____________________________________________________________ define("FADE_DURATION_MS", 300); Set the duration of the fade of images in milliseconds. ____________________________________________________________ define("LOAD_FADE_GRACE", 500); Set the number of milliseconds the script will allow the browser to change the image when it has fully loaded. Setting this too low will in some browsers result in fading-in the image before it have been actually placed. ____________________________________________________________ define("TEXT_GALLERY_NAME", "Single File PHP Gallery"); Text that will be set as title on the page. ____________________________________________________________ define("TEXT_HOME", "Home"); Text on first button in the navigation bar that takes you back to the root of the gallery. ____________________________________________________________ define("TEXT_CLOSE_IMG_VIEW", "Close Image"); Text on button that closes full size image view. ____________________________________________________________ define("TEXT_ACTUAL_SIZE", "Actual Size"); Text on button that can switch between fitting image to screen and actual size. ____________________________________________________________ define("TEXT_FULLRES", "Full resolution"); Text on button that will be shown if USE_PREVIEW is set to TRUE. Used to switch between preview and full resolution images. ____________________________________________________________ define("TEXT_PREVIOUS", "<< Previous"); Text on previous button. ____________________________________________________________ define("TEXT_NEXT", "Next >>"); Text on next button. ____________________________________________________________ define("TEXT_INFO", "Information"); Text on button that will show/hide information. ____________________________________________________________ define("TEXT_DOWNLOAD", "Download full-size image"); Text for the link in information box that allows download of full-size image. Set to "" to have download link removed and function disabled. Just keep in mind that users still can save all images in a number of ways. ____________________________________________________________ define("TEXT_NO_IMAGES", "No Images in gallery"); Text for the information to be shown instead of a thumbnail if there are no images in a directory. ____________________________________________________________ define("TEXT_DATE", "Date"); Text for the date label. ____________________________________________________________ define("TEXT_FILESIZE", "File size"); Text for the file size label. ____________________________________________________________ define("TEXT_IMAGESIZE", "Full Image"); Text for the image size label. ____________________________________________________________ define("TEXT_DISPLAYED_IMAGE", "Displayed Image"); Text for the displayed image dimensions label. ____________________________________________________________ define("TEXT_DIR_NAME", "Gallery Name"); Text for the gallery name label. ____________________________________________________________ define("TEXT_IMAGE_NAME", "Image Name"); Text for the image name label. ____________________________________________________________ define("TEXT_FILE_NAME", "File Name"); Text for the file name label. ____________________________________________________________ define("TEXT_DIRS", "Sub galleries"); Text for the sub galleries label. ____________________________________________________________ define("TEXT_IMAGES", "Images"); Text for the images label. ____________________________________________________________ define("TEXT_IMAGE_NUMBER", "Image number"); Text for the image number label. ____________________________________________________________ define("TEXT_FILES", "Files"); Text for the files label. ____________________________________________________________ define("TEXT_DESCRIPTION", "Description"); Text for the description label. ____________________________________________________________ define("TEXT_DIRECT_LINK_GALLERY", "Direct link to Gallery"); Text for the direct link to gallery link. The link is shown in the information box, and can be used to link directly to the current sub gallery. ____________________________________________________________ define("TEXT_DIRECT_LINK_IMAGE", "Direct link to Image"); Text for the direct link to image link. The link is shown in the information box, and can be used to link directly to the current image. ____________________________________________________________ define("TEXT_NO_PREVIEW_FILE", "No Preview for file"); Text for the information to be shown instead of a thumbnail if there is no preview for a file. ____________________________________________________________ define("TEXT_IMAGE_LOADING", "Image Loading "); Text for the information to show when images is loading. ____________________________________________________________ define("TEXT_LINKS", "Links"); Text for the links label. ____________________________________________________________ define("TEXT_NOT_SCALED", "Not Scaled"); Text for the label that will be shown in information box if the current full size or preview image is not resized to fit screen. ____________________________________________________________ define("TEXT_LINK_BACK", "Back to my site"); Text for an optional link button. See LINK_BACK for further information. ____________________________________________________________ define("TEXT_THIS_IS_FULL", "Full"); Text for the label that will show if the current image is full size. ____________________________________________________________ define("TEXT_THIS_IS_PREVIEW", "Preview"); Text for the label that will show if the current image is a preview size. ____________________________________________________________ define("TEXT_SCALED_TO", "Scaled to"); Text for the scaled to label. ____________________________________________________________ define("TEXT_YES", "Yes"); Text for the yes label. ____________________________________________________________ define("TEXT_NO", "No"); Text for the no label. ____________________________________________________________ define("TEXT_EXIF_DATE", "EXIF Date"); Text for the EXIF Date label. If changed after thumbnails have been created, thumbnails have to be deleted for this setting to apply. ____________________________________________________________ define("TEXT_EXIF_CAMERA", "Camera"); Text for the Camera label. If changed after thumbnails have been created, thumbnails have to be deleted for this setting to apply. ____________________________________________________________ define("TEXT_EXIF_ISO", "ISO"); Text for the ISO label. If changed after thumbnails have been created, thumbnails have to be deleted for this setting to apply. ____________________________________________________________ define("TEXT_EXIF_SHUTTER", "Shutter Speed"); Text for the Shutter Speed label. If changed after thumbnails have been created, thumbnails have to be deleted for this setting to apply. ____________________________________________________________ define("TEXT_EXIF_APERTURE", "Aperture"); Text for the Aperture label. If changed after thumbnails have been created, thumbnails have to be deleted for this setting to apply. ____________________________________________________________ define("TEXT_EXIF_FOCAL", "Focal Length"); Text for the Focal Length label. If changed after thumbnails have been created, thumbnails have to be deleted for this setting to apply. ____________________________________________________________ define("TEXT_EXIF_FLASH", "Flash fired"); Text for the Flash Fired label. If changed after thumbnails have been created, thumbnails have to be deleted for this setting to apply. ____________________________________________________________ define("TEXT_EXIF_MISSING", "No EXIF informatin in image file"); Text for the label that will be shown if there are no EXIF info in image file. If changed after thumbnails have been created, thumbnails have to be deleted for this setting to apply. ____________________________________________________________ Set the colors to be used. If the color variable names is not enough to indicate where it goes, then just change it to red (#ff0000) or blue (#0000ff) and refresh the page, you should then be able to spot it. $color_body_back = "#000000"; $color_body_text = "#aaaaaa"; $color_body_link = "#b0b0b0"; $color_body_hover = "#ffffff"; $color_thumb_border = "#606060"; $color_fullimg_border = "#ffffff"; $color_dir_box_border = "#505050"; $color_dir_box_back = "#000000"; $color_dir_box_text = "#aaaaaa"; $color_dir_hover = "#ffffff"; $color_dir_hover_text = "#000000"; $color_img_box_border = "#505050"; $color_img_box_back = "#202020"; $color_img_box_text = "#aaaaaa"; $color_img_hover = "#ffffff"; $color_img_hover_text = "#000000"; $color_file_box_border = "#404040"; $color_file_box_back = "#101010"; $color_file_box_text = "#aaaaaa"; $color_file_hover = "#ffffff"; $color_file_hover_text = "#000000"; $color_button_border = "#808080"; $color_button_back = "#000000"; $color_button_text = "#aaaaaa"; $color_button_border_off = "#505050"; $color_button_back_off = "#000000"; $color_button_text_off = "#505050"; $color_button_hover = "#ffffff"; $color_button_hover_text = "#000000"; $color_button_on = "#aaaaaa"; $color_button_text_on = "#000000"; $color_overlay = "#000000"; $color_menu_hover = "#ffffff"; ____________________________________________________________ EOF