Migrated from SVN to GIT (history was containing passwords, so i didn't converted it)
[mirrors/SokoMan.git] / sklad.conf.php.example
1 <?php
2 define('DB_USER', 'user');
3 define('DB_PASS', 'pass');
4 define('DB_NAME', 'store');
5 define('DB_HOST', 'localhost');
6 define('DB_DSN', 'mysql:host='.DB_HOST.';dbname='.DB_NAME);
7
8 define('DIR_HOME', './');
9 define('DIR_IMAGES', DIR_HOME.'/images');
10 define('DIR_TEMPLATES', DIR_HOME.'/templates');
11
12 define('URL_HOME', dirname($_SERVER['SCRIPT_NAME']));
13 define('URL_IMAGES', URL_HOME.'/images');
14
15 $fake_lms_users = array( //You can specify multiple users in this array
16 DB_USER => DB_PASS
17 );
This page took 0.368505 seconds and 5 git commands to generate.