1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<?php
# -- BEGIN LICENSE BLOCK ---------------------------------------
#
# This file is part of Dotclear 2.
#
# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
# Licensed under the GPL version 2.0 license.
# See LICENSE file or
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK -----------------------------------------
if (!defined('DC_RC_PATH')) { return; }
// Database driver (mysql, pgsql, sqlite)
define('DC_DBDRIVER','sqlite');
// Database hostname (usually "localhost")
define('DC_DBHOST','_DBC_DBSERVER_');
// Database user
define('DC_DBUSER','_DBC_DBUSER_');
// Database password
define('DC_DBPASSWORD','_DBC_DBPASS_');
// Database name
define('DC_DBNAME','_DBC_BASEPATH_/_DBC_DBNAME_');
// Tables' prefix
define('DC_DBPREFIX','dc_');
// Persistent database connection
define('DC_DBPERSIST',false);
// Crypt key (password storage)
define('DC_MASTER_KEY', '_DC_MASTER_KEY_');
// Admin URL. You need to set it for some features.
define('DC_ADMIN_URL','http://localhost/dotclear/admin/');
// Admin mail from address. For password recovery and such.
define('DC_ADMIN_MAILFROM','dotclear@local');
// Cookie's name
define('DC_SESSION_NAME','dcxd');
// Plugins root
define('DC_PLUGINS_ROOT', '/usr/share/dotclear/web/plugins');
// Template cache directory
define('DC_TPL_CACHE', '/usr/share/dotclear/web/cache');
// If you have PATH_INFO issue, uncomment following lines
//if (!isset($_SERVER['ORIG_PATH_INFO'])) {
// $_SERVER['ORIG_PATH_INFO'] = '';
//}
//$_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO'];
// If you have mail problems, uncomment following lines and adapt it to your hosting configuration
// For more information about this setting, please refer to http://doc.dotclear.net/2.0/admin/install/custom-sendmail
//function _mail($to,$subject,$message,$headers)
//{
// socketMail::$smtp_relay = 'my.smtp.relay.org';
// socketMail::mail($to,$subject,$message,$headers);
//}
?>
|