|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/luxvegatech.com/inc/ | |
|
Path: /home2/outerorb/luxvegatech.com/inc/config.php
Size: 479 B
Permissions: 0666
<?php
// Basic configuration and BASE_URL detection
if (!defined('BASE_URL')) {
$scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$host = $_SERVER['HTTP_HOST'] ?? 'localhost';
$scriptName = $_SERVER['SCRIPT_NAME'] ?? '';
$scriptDir = rtrim(str_replace('\\','/', dirname($scriptName)), '/');
$base = $scheme . '://' . $host . ($scriptDir === '/' ? '' : $scriptDir);
define('BASE_URL', rtrim($base, '/'));
}