-
Notifications
You must be signed in to change notification settings - Fork 151
/
config.php
46 lines (41 loc) · 1.61 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* This file contains the website configuration.
*
* PHP versions 4 and 5
*
* LICENSE:
*
* This file is part of PhotoShow.
*
* PhotoShow is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PhotoShow is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PhotoShow. If not, see <http://www.gnu.org/licenses/>.
*
* @category Website
* @package Photoshow
* @author Thibaud Rohmer <thibaud.rohmer@gmail.com>
* @copyright 2011 Thibaud Rohmer
* @license http://www.gnu.org/licenses/
* @link http://github.com/thibaud-rohmer/PhotoShow
*/
// Folder where your pictures are stored.
// Must be at least readable by web server process
$config->photos_dir = "path_to_your_photos_dir_goes_here";
// Folder where PhotoShow parameters and thumbnails are stored.
// Must be writable by web server process
$config->ps_generated = "path_where_photoshow_generates_files_goes_here";
// Local timezone. Default one is "Europe/Paris".
#$config->timezone = "Europe/Paris";
// If you want to inject a tracking code (or anything really) in your pages <head>, use this to refer to a file containing that:
#$config->tracking_code_include = '/path/to/something.html';
?>