root/releases/0.9rc2/config.php
| Revision 1474, 0.7 kB (checked in by misja, 8 months ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | // ELGG system configuration parameters. |
| 3 | // You could override default values here, to see all available |
| 4 | // options see lib/config-defaults.php |
| 5 | // Note: some values are override by the values stored in database |
| 6 | // through admin manager |
| 7 | |
| 8 | // External URL to the site (eg http://elgg.bogton.edu/) |
| 9 | |
| 10 | $CFG->wwwroot = "http://"; // **MUST** have a final slash at the end |
| 11 | |
| 12 | // Database configuration |
| 13 | |
| 14 | $CFG->dbtype = "mysql"; |
| 15 | $CFG->dbhost = "localhost"; |
| 16 | |
| 17 | $CFG->dbuser = ""; |
| 18 | $CFG->dbpass = ""; |
| 19 | |
| 20 | $CFG->dbname = ""; |
| 21 | $CFG->prefix = "elgg_"; |
| 22 | |
| 23 | $CFG->sysadminemail = ""; |
| 24 | |
| 25 | // Settings for initial administrator, only used at installation time |
| 26 | $CFG->newsinitialusername = "news"; |
| 27 | $CFG->newsinitialpassword = ""; |
| 28 | |
| 29 | ?> |
Note: See TracBrowser for help on using the browser.
