Update constants.php.template

This commit is contained in:
Olivier PEREZ 2014-12-23 09:33:00 +01:00
parent 70ad15aa97
commit 4818d7977a

View File

@ -32,20 +32,14 @@ const ADRESSEMAILADMIN = '<email address>';
// Email for automatic responses (you should set it to "no-reply") // Email for automatic responses (you should set it to "no-reply")
const ADRESSEMAILREPONSEAUTO = '<no-reply@mydomain.com>'; const ADRESSEMAILREPONSEAUTO = '<no-reply@mydomain.com>';
// Database name
const BASE = '<database name>';
// Database user // Database user
const USERBASE = '<database user>'; const DB_USER= '<database user>';
// Database password // Database password
const USERPASSWD = '<database password>'; const DB_PASSWORD = '<database password>';
// Database server name, leave empty to use a socket // Database server name, leave empty to use a socket
const SERVEURBASE = '<database server>'; const DB_CONNECTION_STRING = 'mysql:host=<database host>;dbname=<database name>;port=<database port>';
// Database type (pdo, mysql, postgres…) http://phplens.com/lens/adodb/docs-adodb.htm#drivers
const BASE_TYPE = '<database type>';
// Default Language using POSIX variant of BC P47 standard (choose in $ALLOWED_LANGUAGES) // Default Language using POSIX variant of BC P47 standard (choose in $ALLOWED_LANGUAGES)
const LANGUE = 'fr_FR'; const LANGUE = 'fr_FR';