]> dev.renevier.net Git - syp.git/blob - inc/settings.php.in
postgresql support
[syp.git] / inc / settings.php.in
1 <?php
2 /* Copyright (c) 2009 Arnaud Renevier, Inc, published under the modified BSD
3    license. */
4
5 // database type
6 define ("DBTYPE", "mysql");
7
8 // database hostname
9 define ("DBHOST", "localhost");
10
11 // database user
12 define ("DBUSER", "syp");
13
14 // database password
15 define ("DBPWD", "");
16
17 // database name
18 define ("DBNAME", "syp");
19
20 // tables prefix. This prefix will also be used as a prefix for cookie names.
21 define ("DBPREFIX", "syp_");
22
23 // directory where images will be uploaded and stored. That directory needs
24 // to be writeable by SYP.
25 define ("UPLOADDIR", "upload");
26
27 // directory where generated thumbnails are stored. That directory needs to be
28 // writeable by SYP.
29 define ("THUMBSDIR", "upload/_thumbs");
30
31 // title of your website
32 define ("SITETITLE", "SYP");
33
34 // email contact for webmaster.
35 define ("WEBMASTERMAIL", "");
36
37 // url of images directory. If empty, syp will try to guess it from syp admin
38 // location and UPLOADDIR. So, you need to set that variable if host is
39 // different between syp admin and images directory. Or if protocol is
40 // different (for example, if syp admin is https and images directory is http)
41 define ("IMGSDIRURL", "");
42
43 // url of tumbnails directory. If empty, syp will try to guess it from syp
44 // location and THUMBSDIR. So, you need to set that variable if host is
45 // different between syp admin and images directory. Or if protocol is
46 // different (for example, if syp admin is https and images directory is http)
47 define ("THUMBSDIRURL", "");
48
49 // max size (either width or height) of thumbnails. If one dimension of
50 // uploaded image is bigger, images will be resized.
51 define ("THUMBSMAXSIZE", 400);
52
53 // If set to 0 popup will appear near selected marker. 
54 // If set to 1, popup will appear at top left corner of the map
55 // If set to 2, popup will appear at top right corner of the map
56 // If set to 3 (default), popup will appear at bottom right corner of the map
57 // If set to 4, popup will appear at bottom left corner of the map
58 define ("POPUPPOS", 3);
59 ?>