----------------------------
USER UPDATEABLE VARIABLES...
----------------------------
-- LAYOUT (PHOTOS
PER PAGE) --------------------------------
The number of rows and columns you want when displaying
directory listings:
$photoColumns = 4;
$photoRows = 4;
-- THUMBNAIL IMAGES ----------------------------------------
Thumbs Directory (leave blank to disallow thumbnails)
$thumbsDir = "thumbs";
-- DIRECTORY NOTES (ALBUM COMMENTS) ------------------------
Directory Comments Filename (eg: comments.txt)
$dirCommentsFile = "comments.txt";
-- PHOTO NOTES ---------------------------------------------
Photo Notes Extension (leave blank to ignore photo notes)
$photoNotesExt = ".notes";
-- VISITOR COMMENTS
----------------------------------------
By default, user comments are disabled due to most systems'
default permissions. See the note regarding this in the
installation instructions (above).
You can disable further
user comments, but leave current
ones visible by specifying:
$allowVisitorComments = 0;
$visitorCommentsExt = ".comments";
Allow Visitors to
Leave Comments? (1=Yes, 0=No)
$allowVisitorComments = 1;
Visitor Comments Extension (leave blank to ignore comments)
$visitorCommentsExt = ".comments";
-- MARK RECENT FILES/DIRECTORIES ---------------------------
Show last updated date on directories? (1=Yes, 0=No)
$showDirDate = 1;
Show "New Photos!" text and link on recently changed
directories? (1=Yes, 0=No)
$showNewPhotosLink = 1;
Show "New!" text by recently added photos? (1=Yes, 0=No)
$showNewPhotoText = 1;
If so, how recent must a photo be to be "new"? (in days)
$showNewPhotosDays = 7;
-- POPULARITY (HITS) TRACKING ------------------------------
Popularity tracking is disabled by default due to most
systems' default permission set. See the note regarding
this in the installation instructions (above) before
enabling this feature.
Track each photo's
popularity (# of hits)? (1=Yes, 0=No)
$trackPhotoPop = 1;
If so, use this extension for the popularity tracking file:
$popExt = ".hits";
Publicly display each photo's popularity? (1=Yes, 0=No)
$displayPhotoPop = 1;
Place a "Pop!" symbol by images that exceed this number
of views: ("0" deactivates this feature)
$POPMinimum = 10;
-- FILENAME FILTERING
--------------------------------------
Allowed file extensions (ignore all others). Separate
multiple entries with commas.
eg: $allowedFiles = array(".jpg",".jpeg",".gif");
$allowedFiles = array(".jpg",".jpeg",".gif",".fpx",".png");
Hidden directories
(allow all others). You do not need to
include the Thumbs Directory (above) or ".." or "."
as they
will automatically be hidden. Separate multiple entries
with commas.
eg: $hiddenDirs = array("cgi-bin","secret","other_files");
$hiddenDirs = array("");
-- PAGE LAYOUT (LOOK
& FEEL) -------------------------------
You may change the look of the page by changing the headers
and footers here.