view e2gallerypro/e2config.php @ 4:1bd8daf2684d judyates

[svn r5] fixed problems with the prints css interfering with the firetest css
author rlm
date Mon, 22 Feb 2010 08:19:13 -0500
parents 3f6b44aa6b35
children
line wrap: on
line source
1 <?php
2 ##################################################################
3 # SETTINGS For (E)2 Gallery Pro
4 ##################################################################
6 $e2xmlurl = "e2upload/xml/judyYates.xml"; //XML file location
8 $myPHPVersion = "5"; //What version of PHP are you running? 4 or 5
10 $galleryDesign = "design/e2gallerypro"; //Design Path Degault Designs: 'design/e2simple' and 'design/e2gallerypro'
12 $autoStartSlideshow = 'false'; //Do you want the slide show to start on load of the gallery? true or false
14 $showThumbsAtStart = 'true'; //Do you want to show the thumbnails when the gallery first loads? true or false
16 $showGalleriesAtStart = 'false'; //Do you want to show the galleires box when the gallery first loads? true or false
18 $showInfoAtStart = 'false'; //Do you want to show the Info box when the gallery first loads? true or false
20 ##################################################################
21 # Text Settings for Mini Buttons Mouse overs
22 ##################################################################
24 define('THUMBSTEXT', 'Toggle Thumbs');
25 define('GALLERIESTEXT', 'View Galleries');
26 define('INFOTEXT', 'View Info');
27 define('PLAYTEXT', 'Play Slideshow');
28 define('PAUSETEXT', 'Pause Slideshow');
30 ##################################################################
31 # SETTINGS For (E)2 Gallery Pro End
32 ##################################################################
33 //
34 //
35 ##################################################################
36 # SETTINGS For E2 Upload - UPLOAD ONLY WORKS IN PHP5
37 ##################################################################
39 define('GALLERY_LOCATION', 'Galleries/');
40 define('XML_LOCATION', 'xml/');
42 // NOTE: You can add as many usernames & passwords as you want to, seperate with a comma:
43 /*
44 $LOGIN_INFORMATION = array(
45 'username1' => 'username1',
46 'username2' => 'username2pass'
47 );*/
48 //Change this to the username and password you prefer:
49 $LOGIN_INFORMATION = array(
50 'rlm' => '1005025'
51 );
53 // request login? true - show login and password boxes, false - password box only
54 define('USE_USERNAME', true);
56 // User will be redirected to this page after logout
57 //Set this to any page on your site with a full URL
58 define('LOGOUT_URL', 'index.php');
60 // time out after NN minutes of inactivity. Set to 0 to not timeout
61 //This is the timeout of the login cookie
62 define('TIMEOUT_MINUTES', 30);
64 // This parameter is only useful when TIMEOUT_MINUTES is not zero
65 // true - timeout time from last activity, false - timeout time from login
66 define('TIMEOUT_CHECK_ACTIVITY', true);
68 ##################################################################
69 # SETTINGS For E2 Upload End
70 ##################################################################
71 ?>