]> dev.renevier.net Git - syp.git/blob - inc/settings.php
real api and clearer separation between server and client
[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 // admin password. It will be read from here during site installation.
21 // Then, it will be stored in database. So, if you need to change password
22 // once it's set, changing it here will not work; you'll need to change it
23 // in the database.
24 define ("ADMINPWD", "");
25
26 // directory where images will be uploaded and stored. That directory needs
27 // to be writeable by SYP.
28 define ("UPLOADDIR", "upload");
29
30 // title of your website
31 define ("SITETITLE", "SYP");
32
33 // url of images directory. If empty, syp will try to guess it from syp admin
34 // location and UPLOADDIR. So, you need to set that variable if host is
35 // different between syp admin and images directory. Or if protocol is
36 // different (for example, if syp admin is https and images directory is http)
37 define ("IMGSDIRURL", "");
38 ?>