]> dev.renevier.net Git - syp.git/blob - inc/settings.php
images are stored on a ftp server
[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 // ftp server to store photos
28 define ("FTPSERVER", "");
29
30 // ftp user
31 define ("FTPUSER", "");
32
33 // ftp pass
34 define ("FTPPASS", "");
35
36 // ftp directory
37 define ("FTPIMGDIR", "");
38
39 // email contact for webmaster.
40 define ("WEBMASTERMAIL", "");
41
42 // url of images directory. If empty, syp will try to guess it from syp admin
43 // location and UPLOADDIR. So, you need to set that variable if host is
44 // different between syp admin and images directory. Or if protocol is
45 // different (for example, if syp admin is https and images directory is http)
46 define ("IMGSDIRURL", "");
47 ?>