<?php /* +-------------------------------------------- * | * | Product: PHPEchoCMS * | Author: Tigran Abrahamyan * | License: GPL * | Last updated: 03.03.07 * | For version: 2.0 * | Desc: Configuration file for CMS * | * +-------------------------------------------- */ /* * USER EDITABLE PART */ // Database settings $cfg_db_host = "localhost"; // db hostname $cfg_db_user = "root"; // db username $cfg_db_pass = ""; // db password $cfg_db_name = "phpecms"; // database name $cfg_db_p = "phpecms_"; // table prefixes in database // Other settings. $www_path IS REQUIRED! $www_path = "http://localhost/"; // Set your site FULL path - REQUIRED ex. http://www.yourhost.com/ // Optional settings $root_path = str_replace ( "\\", "/", dirname(__FILE__)."/" ); // NO EDIT! only for advanced users. $debug_on = false; // On/Off site debugging (true - debug on, false - debug off) /* * END USER EDITABLE PART */ DEFINE ( "CMSVERSION" , "2.0-rc3" ); // Database prefix - from variable to constant, don't touch. DEFINE ( "PREFIX" , $cfg_db_p ); DEFINE ( "ROOTPATH" , $root_path ); ?>