aboutsummaryrefslogtreecommitdiff
path: root/h-source
diff options
context:
space:
mode:
authorYuchen Pei <hi@ypei.me>2021-08-26 11:24:58 +1000
committerYuchen Pei <hi@ypei.me>2021-08-26 11:24:58 +1000
commit7b2c76f23be47a8753cfe6d197843a82c6ebf26d (patch)
tree3d85a179d3ac90dc4f25665c2bbff0c1372683a0 /h-source
parenta57a3fa7241f33a94d41a1fd22a0d07c8fb6286d (diff)
Moving docker files to its own directory.
Also applied the docker patch and removed some commented code.
Diffstat (limited to 'h-source')
-rwxr-xr-xh-source/.htaccess15
-rwxr-xr-xh-source/Application/Hooks/BeforeChecks.php2
-rwxr-xr-xh-source/Config/Config.php8
-rwxr-xr-xh-source/admin/Config/Config.php8
4 files changed, 12 insertions, 21 deletions
diff --git a/h-source/.htaccess b/h-source/.htaccess
index 56ccf22..95ab62f 100755
--- a/h-source/.htaccess
+++ b/h-source/.htaccess
@@ -1,14 +1,5 @@
RewriteEngine On
-RewriteCond %{HTTPS} !^on$
-RewriteRule (.*) https://www.h-node.org/$1 [R,L]
-
-# <IfModule mod_rewrite.c>
-# Options +FollowSymlinks
-# RewriteEngine on
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
-# </IfModule>
-
-
+RewriteCond %{REQUEST_FILENAME} !-f
+RewriteCond %{REQUEST_FILENAME} !-d
+RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
diff --git a/h-source/Application/Hooks/BeforeChecks.php b/h-source/Application/Hooks/BeforeChecks.php
index 6f200e6..47e7936 100755
--- a/h-source/Application/Hooks/BeforeChecks.php
+++ b/h-source/Application/Hooks/BeforeChecks.php
@@ -13,7 +13,7 @@ if (!defined('EG')) die('Direct access not allowed!');
Params::$htmlentititiesCharset = "UTF-8";
-Params::$useHttps = true;
+Params::$useHttps = false;
Params::$allowedSanitizeFunc .= ",sanitizeString,sanitizeAlphanum";
diff --git a/h-source/Config/Config.php b/h-source/Config/Config.php
index bea5562..1290751 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', '');
-define('USER', '');
+define('DB', 'hnode');
+define('USER', 'root');
define('PWD', '');
-define('HOST', '');
+define('HOST', 'localhost');
/*default controller name*/
define('DEFAULT_CONTROLLER','home');
@@ -35,7 +35,7 @@ define('DEFAULT_CONTROLLER','home');
define('DEFAULT_ACTION','index');
/*website parameters*/
-define('DOMAIN_NAME','h-source');
+define('DOMAIN_NAME','localhost');
/*type of database.*/
//it can be: Mysql, Mysqli or None (first letter in uppercase)
diff --git a/h-source/admin/Config/Config.php b/h-source/admin/Config/Config.php
index 24d2e57..3f7866d 100755
--- a/h-source/admin/Config/Config.php
+++ b/h-source/admin/Config/Config.php
@@ -6,10 +6,10 @@
if (!defined('EG')) die('Direct access not allowed!');
-define('DB', '');
-define('USER', '');
+define('DB', 'hnode');
+define('USER', 'root');
define('PWD', '');
-define('HOST', '');
+define('HOST', 'localhost');
/*default controller name*/
define('DEFAULT_CONTROLLER','adminusers');
@@ -18,7 +18,7 @@ define('DEFAULT_CONTROLLER','adminusers');
define('DEFAULT_ACTION','login');
/*website parameters*/
-define('DOMAIN_NAME','h-source/admin');
+define('DOMAIN_NAME','localhost/admin');
/*type of database.*/
//it can be: Mysql, Mysqli or None (first letter in uppercase)