]> dev.renevier.net Git - syp.git/blob - inc/settings.php
rss feed
[syp.git] / inc / settings.php
1 <?php
2 /* Copyright (c) 2009 Arnaud Renevier, Inc, published under the modified BSD
3    license. */
4
5 // database hostname
6 define ("DBHOST", "localhost");
7
8 // database user
9 define ("DBUSER", "syp");
10
11 // database password
12 define ("DBPWD", "");
13
14 // database name
15 define ("DBNAME", "syp");
16
17 // tables prefix. This prefix will also be used as a prefix for cookie names.
18 define ("DBPREFIX", "syp_");
19
20 // directory where images will be uploaded and stored. That directory needs
21 // to be writeable by SYP.
22 define ("UPLOADDIR", "upload");
23
24 // title of your website
25 define ("SITETITLE", "SYP");
26
27 // email contact for webmaster.
28 define ("WEBMASTERMAIL", "");
29
30 // url of images directory. If empty, syp will try to guess it from syp admin
31 // location and UPLOADDIR. So, you need to set that variable if host is
32 // different between syp admin and images directory. Or if protocol is
33 // different (for example, if syp admin is https and images directory is http)
34 define ("IMGSDIRURL", "");
35 ?>