|
Revision 2233, 0.8 KB
(checked in by nick_ramsay, 18 months ago)
|
|
[Trunk] Updating with 1.4.2. files.
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 | /* Configuration file for Hotaru CMS�@*/
|
|---|
| 3 |
|
|---|
| 4 | // Paths
|
|---|
| 5 | define('BASEURL', "http://example.com/"); // e.g. http://example.com/ (needs trailing slash)
|
|---|
| 6 |
|
|---|
| 7 | // Database details
|
|---|
| 8 | define("DB_USER", 'root'); // Add your own database details
|
|---|
| 9 | define("DB_PASSWORD", '');
|
|---|
| 10 | define("DB_NAME", 'hotaru');
|
|---|
| 11 | define("DB_HOST", 'localhost'); // You probably won't need to change this
|
|---|
| 12 |
|
|---|
| 13 | // You probably don't need to change these
|
|---|
| 14 | define("DB_PREFIX", 'hotaru_'); // Database prefix, e.g. "hotaru_"
|
|---|
| 15 | define("DB_LANG", 'en'); // Database language, e.g. "en"
|
|---|
| 16 | define("DB_ENGINE", 'MyISAM'); // Database Engine, e.g. "MyISAM"
|
|---|
| 17 | define('DB_CHARSET', 'utf8'); // Database Character Set (UTF8 is Recommended), e.g. "utf8"
|
|---|
| 18 | define("DB_COLLATE", 'utf8_unicode_ci'); // Database Collation (UTF8 is Recommended), e.g. "utf8_unicode_ci"
|
|---|
| 19 |
|
|---|
| 20 | ?> |
|---|