diff options
author | Luis Alberto Guzmán García <ark74> | 2012-02-21 16:48:24 +0000 |
---|---|---|
committer | Luis Alberto Guzmán García <ark74> | 2012-02-21 16:48:24 +0000 |
commit | 3d7ef55a2f7cd820d511af2372b3274ec0c147a7 (patch) | |
tree | b72581a4d3d0a05cc5f065df0b9d1e22bdc158ea | |
parent | dd9c3e594d39efe73e8c805aca2a9ccf63630539 (diff) |
fix Config misconfiguration
-rwxr-xr-x | h-source/Config/Config.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/h-source/Config/Config.php b/h-source/Config/Config.php index 45952e3..bea5562 100755 --- a/h-source/Config/Config.php +++ b/h-source/Config/Config.php @@ -23,10 +23,10 @@ if (!defined('EG')) die('Direct access not allowed!'); -define('DB', 'hsource'); -define('USER', 'root'); -define('PWD', 'phpmyadmin'); -define('HOST', 'localhost'); +define('DB', ''); +define('USER', ''); +define('PWD', ''); +define('HOST', ''); /*default controller name*/ define('DEFAULT_CONTROLLER','home'); @@ -35,7 +35,7 @@ define('DEFAULT_CONTROLLER','home'); define('DEFAULT_ACTION','index'); /*website parameters*/ -define('DOMAIN_NAME','localhost'); +define('DOMAIN_NAME','h-source'); /*type of database.*/ //it can be: Mysql, Mysqli or None (first letter in uppercase) |