Skip to content

Commit

Permalink
Merge pull request #888 from LoginRadius/ch_fixdocloading
Browse files Browse the repository at this point in the history
updated config as improvement
  • Loading branch information
rajeevsharma34 authored Nov 20, 2024
2 parents b2bdecd + 1234ad6 commit e17f968
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php
ini_set("log_errors", 1);
ini_set("error_log", __DIR__ . '/error.txt');
$protocal = 'https';
$domain = isset($_SERVER['HTTP_HOST']) && !empty($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '';
$path = isset($_SERVER['SCRIPT_NAME']) && !empty($_SERVER['SCRIPT_NAME']) ? $_SERVER['SCRIPT_NAME'] : '';
Expand Down Expand Up @@ -106,7 +108,7 @@
define('RECAPTCHA_SITE_KEY', getenv('RECAPTCHA_SITE_KEY'));

/* DEBUGING */
define('DEBUG', false);
define('DEBUG', true);

define('PROTOCAL_USERNAME', getenv('PROTOCAL_USERNAME'));
define('PROTOCAL_PASSWORD', getenv('PROTOCAL_PASSWORD'));
Expand Down

0 comments on commit e17f968

Please sign in to comment.