Mercurial > judyates
comparison 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 |
comparison
equal
deleted
inserted
replaced
2:670229c4eb4b | 3:3f6b44aa6b35 |
---|---|
1 <?php | |
2 ################################################################## | |
3 # SETTINGS For (E)2 Gallery Pro | |
4 ################################################################## | |
5 | |
6 $e2xmlurl = "e2upload/xml/judyYates.xml"; //XML file location | |
7 | |
8 $myPHPVersion = "5"; //What version of PHP are you running? 4 or 5 | |
9 | |
10 $galleryDesign = "design/e2simple"; //Design Path Degault Designs: 'design/e2simple' and 'design/e2gallerypro' | |
11 | |
12 $autoStartSlideshow = 'false'; //Do you want the slide show to start on load of the gallery? true or false | |
13 | |
14 $showThumbsAtStart = 'true'; //Do you want to show the thumbnails when the gallery first loads? true or false | |
15 | |
16 $showGalleriesAtStart = 'false'; //Do you want to show the galleires box when the gallery first loads? true or false | |
17 | |
18 $showInfoAtStart = 'false'; //Do you want to show the Info box when the gallery first loads? true or false | |
19 | |
20 ################################################################## | |
21 # Text Settings for Mini Buttons Mouse overs | |
22 ################################################################## | |
23 | |
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'); | |
29 | |
30 ################################################################## | |
31 # SETTINGS For (E)2 Gallery Pro End | |
32 ################################################################## | |
33 // | |
34 // | |
35 ################################################################## | |
36 # SETTINGS For E2 Upload - UPLOAD ONLY WORKS IN PHP5 | |
37 ################################################################## | |
38 | |
39 define('GALLERY_LOCATION', 'Galleries/'); | |
40 define('XML_LOCATION', 'xml/'); | |
41 | |
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 ); | |
52 | |
53 // request login? true - show login and password boxes, false - password box only | |
54 define('USE_USERNAME', true); | |
55 | |
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'); | |
59 | |
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); | |
63 | |
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); | |
67 | |
68 ################################################################## | |
69 # SETTINGS For E2 Upload End | |
70 ################################################################## | |
71 ?> |