Mercurial > judyates
diff e2gallerypro/e2config.php @ 3:3f6b44aa6b35 judyates
[svn r4] added ability to buy stuff, from a Prints page, but it doesn't work well with the css, and it also has not been fitted into the perl make system.
author | rlm |
---|---|
date | Mon, 22 Feb 2010 08:02:39 -0500 |
parents | |
children | 1bd8daf2684d |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/e2gallerypro/e2config.php Mon Feb 22 08:02:39 2010 -0500 1.3 @@ -0,0 +1,71 @@ 1.4 +<?php 1.5 +################################################################## 1.6 +# SETTINGS For (E)2 Gallery Pro 1.7 +################################################################## 1.8 + 1.9 +$e2xmlurl = "e2upload/xml/judyYates.xml"; //XML file location 1.10 + 1.11 +$myPHPVersion = "5"; //What version of PHP are you running? 4 or 5 1.12 + 1.13 +$galleryDesign = "design/e2simple"; //Design Path Degault Designs: 'design/e2simple' and 'design/e2gallerypro' 1.14 + 1.15 +$autoStartSlideshow = 'false'; //Do you want the slide show to start on load of the gallery? true or false 1.16 + 1.17 +$showThumbsAtStart = 'true'; //Do you want to show the thumbnails when the gallery first loads? true or false 1.18 + 1.19 +$showGalleriesAtStart = 'false'; //Do you want to show the galleires box when the gallery first loads? true or false 1.20 + 1.21 +$showInfoAtStart = 'false'; //Do you want to show the Info box when the gallery first loads? true or false 1.22 + 1.23 +################################################################## 1.24 +# Text Settings for Mini Buttons Mouse overs 1.25 +################################################################## 1.26 + 1.27 +define('THUMBSTEXT', 'Toggle Thumbs'); 1.28 +define('GALLERIESTEXT', 'View Galleries'); 1.29 +define('INFOTEXT', 'View Info'); 1.30 +define('PLAYTEXT', 'Play Slideshow'); 1.31 +define('PAUSETEXT', 'Pause Slideshow'); 1.32 + 1.33 +################################################################## 1.34 +# SETTINGS For (E)2 Gallery Pro End 1.35 +################################################################## 1.36 +// 1.37 +// 1.38 +################################################################## 1.39 +# SETTINGS For E2 Upload - UPLOAD ONLY WORKS IN PHP5 1.40 +################################################################## 1.41 + 1.42 +define('GALLERY_LOCATION', 'Galleries/'); 1.43 +define('XML_LOCATION', 'xml/'); 1.44 + 1.45 +// NOTE: You can add as many usernames & passwords as you want to, seperate with a comma: 1.46 +/* 1.47 +$LOGIN_INFORMATION = array( 1.48 + 'username1' => 'username1', 1.49 + 'username2' => 'username2pass' 1.50 +);*/ 1.51 +//Change this to the username and password you prefer: 1.52 +$LOGIN_INFORMATION = array( 1.53 + 'rlm' => '1005025' 1.54 +); 1.55 + 1.56 +// request login? true - show login and password boxes, false - password box only 1.57 +define('USE_USERNAME', true); 1.58 + 1.59 +// User will be redirected to this page after logout 1.60 +//Set this to any page on your site with a full URL 1.61 +define('LOGOUT_URL', 'index.php'); 1.62 + 1.63 +// time out after NN minutes of inactivity. Set to 0 to not timeout 1.64 +//This is the timeout of the login cookie 1.65 +define('TIMEOUT_MINUTES', 30); 1.66 + 1.67 +// This parameter is only useful when TIMEOUT_MINUTES is not zero 1.68 +// true - timeout time from last activity, false - timeout time from login 1.69 +define('TIMEOUT_CHECK_ACTIVITY', true); 1.70 + 1.71 +################################################################## 1.72 +# SETTINGS For E2 Upload End 1.73 +################################################################## 1.74 +?>