<?php
///////////////////////////////////////////////////////////////////////////////////////////
//
//
// This is the PhotoStack 2.0b8 configuration file. Edit it please.
//
//
///////////////////////////////////////////////////////////////////////////////////////////
//
// Formatting & Name Options
//
///////////////////////////////////////////////////////////////////////////////////////////    

// The name of your main site.
$siteName "Your Site";

// Your Name.
$author "Your W. Name";

// Navigational Separator.
// Some to try: &#8250; &#8226; &#9674; &raquo; Make sure it's a proper entity.
$separator '&#8250;';            

//The name of your Photos section.
$photosName "Photographs";

// Date format for all dates. http://php.net/date/
$dateFormat "d M Y";


///////////////////////////////////////////////////////////////////////////////////////////
//
// Path Information
//
///////////////////////////////////////////////////////////////////////////////////////////    

// The UNIX path to the directory in which photostack.php resides.
// THIS IS A FULL UNIX PATH!
// $_SERVER['DOCUMENT_ROOT'].'/photos' may work for you.
$dirRoot '/home/username/public_html/photos';

// The URL to the folder in which you installed PhotoStack, no trailing slash.
$webDir "http://yoursite.com/photos";

// You can probably leave the next two alone.

// The name of the directory under the dirRoot that you are using as the "cache" directory.
// THIS IS NOT A UNIX PATH -- IT IS A SINGLE FOLDER NAME
$storageDir "storage";

// The name of the document inside of your webDir that you are instantiating PhotoStack on.
// Unless you are using a non index document, you can leave this blank.
$pageName '';

///////////////////////////////////////////////////////////////////////////////////////////
//
// Web Interface Information
//
///////////////////////////////////////////////////////////////////////////////////////////    

// Your PhotoStack Username
$photostackUsername 'Melody';

// Your PhotoStack Password
$photostackPassword 'Nelson';

// Your FTP Username
$ftpUsername 'melody';

// Your FTP Password
$ftpPassword 'nelson';

// Your FTP Host
$ftpHost 'ftp.photostack.site';

// The Path to PhotoStack on your FTP server. This is not the same as your $dirRoot variable.
$ftpDir =  '/public_html/photos';

// The URL to organize. You can leave this alone 
// if you are implementing organize in /organize/
$webConfigURL 'index.php';


///////////////////////////////////////////////////////////////////////////////////////////
//
// Templating Options
//
///////////////////////////////////////////////////////////////////////////////////////////                                        

// Your image index (listing) template.
$templateIndex 'textismIndex.tmpl.php';

// Your image display template.
$templateDisplay 'textismDisplay.tmpl.php';

//Your RSS index listing template.
$templateSyndicateIndex 'rssIndex.tmpl.php';

//Your RSS display template.
$templateSyndicateDisplay 'rssDisplay.tmpl.php';

//Your Search template.
$templateSearch 'search.tmpl.php';


///////////////////////////////////////////////////////////////////////////////////////////
//
// Display Options
//
///////////////////////////////////////////////////////////////////////////////////////////

// Change this to yes if you would like albums listed in natural order (alphabetical).
$albumsSortNatural 'no';

// Would you like the pictures sorted in natural order? Just leave it as 'yes'.
$photosSortNatural 'yes';

//Sort photos in reverse by replacing 'no' with 'yes'.
$photosSortReverse 'no';

// Sort photos according to the desc.txt order... replace 'no' with 'yes'.
$photosSortByDesc 'no';

// Sort photos by date?
$photosSortByDate 'no';

//Options will override each other as necessary (reminder).


///////////////////////////////////////////////////////////////////////////////////////////
//
// Thumbnail Options
//
///////////////////////////////////////////////////////////////////////////////////////////

// Multiply the resulting thumbnails inside the image by how much?
$imageScale .5;

// How tall should the thumbnail be?
$thumbHeight 50;

// How wide should the thumbnail be?
$thumbWidth 50;

// Replace 'no' with 'yes' to gain full size thumbnails.
$fullSize 'no';


///////////////////////////////////////////////////////////////////////////////////////////
//
// Other Options
//
///////////////////////////////////////////////////////////////////////////////////////////

// Turn off caching by replacing 'yes' with 'no'.
$caching 'yes';

// Turn off caching by replacing 'yes' with 'no'.
$thumbnails 'yes';

// Time limit.
// Set it higher if it takes too long when generating ALL of your thumbnails at once.
//0 will turn it off
$timeLimit 0;

//Change to 'no' if you need GD 1.0
$gd2 'yes';

// What is your albums listing file called? It needs to be relative to photostack.php.
$albumListing 'albums.txt';

// What is your descriptions file called? (Place it inside each album folder).
$photoDesc "desc.txt";

//Tag Names. Leave me alone.
$tagName 'PS';

// Leave me alone.
$tagDelimeter '<$';

// Leave me alone.
$tagDelimeterEnd '$>';

// The format used when syndicating, could be changed to xml or echo. ?format=xml for example
$syndicationType 'rss';

///////////////////////////////////////////////////////////////////////////////////////////
?>