aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Alberto Guzmán García <ark74>2012-02-21 16:48:24 +0000
committerLuis Alberto Guzmán García <ark74>2012-02-21 16:48:24 +0000
commit3d7ef55a2f7cd820d511af2372b3274ec0c147a7 (patch)
treeb72581a4d3d0a05cc5f065df0b9d1e22bdc158ea
parentdd9c3e594d39efe73e8c805aca2a9ccf63630539 (diff)
fix Config misconfiguration
-rwxr-xr-xh-source/Config/Config.php10
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)