root/trunk/hotaru_settings_default.php

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
5define('BASEURL', "http://example.com/");               // e.g. http://example.com/ (needs trailing slash)
6
7// Database details
8define("DB_USER", 'root');                                              // Add your own database details
9define("DB_PASSWORD", '');
10define("DB_NAME", 'hotaru');
11define("DB_HOST", 'localhost');                                 // You probably won't need to change this
12
13// You probably don't need to change these
14define("DB_PREFIX", 'hotaru_');                                 // Database prefix, e.g. "hotaru_"
15define("DB_LANG", 'en');                                                // Database language, e.g. "en"
16define("DB_ENGINE", 'MyISAM');                                  // Database Engine, e.g. "MyISAM"
17define('DB_CHARSET', 'utf8');                                   // Database Character Set (UTF8 is Recommended), e.g. "utf8"
18define("DB_COLLATE", 'utf8_unicode_ci');                // Database Collation (UTF8 is Recommended), e.g. "utf8_unicode_ci"
19
20?>
Note: See TracBrowser for help on using the browser.