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