| [ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Empty config.php is sample configuration file. Use it when you need to manualy set up 5 * your ProjectPier installation (installer doesn't work properly, or any other reason). 6 * 7 * When you set the values in this file delete original 'config.php' (it should just have 8 * return false; command) and rename this one to 'config.php' 9 * 10 * @http://www.projectpier.org/ 11 * @modified for ProjectPier 12 */ 13 14 define('DB_ADAPTER', 'mysql'); 15 define('DB_HOST', 'localhost'); 16 define('DB_USER', 'root'); 17 define('DB_PASS', ''); 18 define('DB_NAME', 'projectpier'); 19 define('DB_PERSIST', true); 20 define('TABLE_PREFIX', 'ac_'); 21 define('ROOT_URL', 'http://projectpier.dev'); 22 define('DEFAULT_LOCALIZATION', 'en_us'); 23 // define('DEFAULT_LOCALIZATION', 'de_de'); //German 24 define('DEBUG', true); 25 define('DB_CHARSET', 'utf8'); 26 //Define if notification messages should include the message body for these three 27 // types of messages. To disable this feature, change the word "true" to "false" (no quotes) 28 define('SHOW_MESSAGE_BODY', true); 29 define('SHOW_COMMENT_BODY', true); 30 define('SHOW_MILESTONE_BODY', true); 31 32 return true; 33 34 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Sep 25 23:40:09 2007 | Cross-referenced by PHPXref 0.7 |