Base Directory Fix #1

This commit is contained in:
JonatanRek 2019-10-11 16:32:05 +02:00
parent 5501805c71
commit a82cf90d12
14 changed files with 19 additions and 19 deletions

View File

@ -10,7 +10,7 @@ if (isset($_POST) && !empty($_POST)){
AutomationManager::create($_POST['name'], $onDays, $doCode, $ifCode); AutomationManager::create($_POST['name'], $onDays, $doCode, $ifCode);
header('Location: /vasek/home/' . strtolower(basename(__FILE__, '.php')), TRUE); header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')), TRUE);
die(); die();
} else if (isset($_POST['modalFinal']) && $_POST['modalFinal'] == "Upravit") { } else if (isset($_POST['modalFinal']) && $_POST['modalFinal'] == "Upravit") {
$doCode = json_encode($_POST['device'], JSON_PRETTY_PRINT); $doCode = json_encode($_POST['device'], JSON_PRETTY_PRINT);
@ -38,7 +38,7 @@ if (isset($_POST) && !empty($_POST)){
AutomationManager::create($_POST['name'], $onDays, $doCode, $ifCode, (isset ($_POST['automation_id']) ? $_POST['automation_id'] : "")); AutomationManager::create($_POST['name'], $onDays, $doCode, $ifCode, (isset ($_POST['automation_id']) ? $_POST['automation_id'] : ""));
header('Location: /vasek/home/' . strtolower(basename(__FILE__, '.php'))); header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
die(); die();
} }
} }

View File

@ -7,7 +7,7 @@ if (isset($_POST) && !empty($_POST)){
DashboardManager::Add($subDeviceId); DashboardManager::Add($subDeviceId);
} }
} }
header('Location: /vasek/home/' . strtolower(basename(__FILE__, '.php'))); header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
die(); die();
} }
?> ?>

View File

@ -42,7 +42,7 @@ if (isset($_POST) && !empty($_POST)){
echo $deviceId; echo $deviceId;
var_dump(json_decode ($permissionsInJson)); var_dump(json_decode ($permissionsInJson));
echo '</pre>'; echo '</pre>';
echo '<a href="/vasek/home/">CONTINUE</a>'; echo '<a href="' . BASEDIR .'">CONTINUE</a>';
die(); die();
} }
} else if (isset($_POST['approveDevice'])) { } else if (isset($_POST['approveDevice'])) {
@ -64,10 +64,10 @@ if (isset($_POST) && !empty($_POST)){
echo '<pre>'; echo '<pre>';
var_dump($POST); var_dump($POST);
echo '</pre>'; echo '</pre>';
echo '<a href="/vasek/home/">CONTINUE</a>'; echo '<a href="' . BASEDIR . '">CONTINUE</a>';
die(); die();
} }
header('Location: /vasek/home/'); header('Location: ' . BASEDIR );
die(); die();
} }
?> ?>

View File

@ -9,10 +9,10 @@ if (isset($_POST) && !empty($_POST)){
echo '<pre>'; echo '<pre>';
var_dump($_POST); var_dump($_POST);
echo '</pre>'; echo '</pre>';
echo '<a href="/vasek/home/' . strtolower(basename(__FILE__, '.php')).'">CONTINUE</a>'; echo '<a href="/' . BASEDIR . strtolower(basename(__FILE__, '.php')).'">CONTINUE</a>';
die(); die();
} }
header('Location: /vasek/home/' . strtolower(basename(__FILE__, '.php'))); header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
die(); die();
} }

View File

@ -13,12 +13,12 @@ class Ajax extends Template
global $lang; global $lang;
if (!$userManager->isLogin()){ if (!$userManager->isLogin()){
header('Location: ./'); header('Location: ' . BASEDIR);
} }
$is_ajax = 'XMLHttpRequest' == ( $_SERVER['HTTP_X_REQUESTED_WITH'] ?? '' ); $is_ajax = 'XMLHttpRequest' == ( $_SERVER['HTTP_X_REQUESTED_WITH'] ?? '' );
if (!$is_ajax){ if (!$is_ajax){
header('Location: ./'); header('Location: ' . BASEDIR);
} }
if ( if (

View File

@ -13,7 +13,7 @@ class Automation extends Template
global $langMng; global $langMng;
if (!$userManager->isLogin()){ if (!$userManager->isLogin()){
header('Location: ./login'); header('Location: ' . BASEDIR . 'login');
} }
$automations = []; $automations = [];

View File

@ -7,7 +7,7 @@ class Dashboard extends Template
global $langMng; global $langMng;
if (!$userManager->isLogin()){ if (!$userManager->isLogin()){
header('Location: ./login'); header('Location: ' . BASEDIR . 'login');
} }
$template = new Template('dashboard'); $template = new Template('dashboard');

View File

@ -9,7 +9,7 @@ class Home extends Template
global $langMng; global $langMng;
if (!$userManager->isLogin()){ if (!$userManager->isLogin()){
header('Location: ./login'); header('Location: ' . BASEDIR . 'login');
} }
$template = new Template('home'); $template = new Template('home');

View File

@ -9,7 +9,7 @@ class Log extends Template
global $langMng; global $langMng;
if (!$userManager->isLogin()){ if (!$userManager->isLogin()){
header('Location: ./login'); header('Location: ' . BASEDIR . 'login');
} }
$template = new Template('log'); $template = new Template('log');

View File

@ -7,7 +7,7 @@ class Login extends Template
global $lang; global $lang;
if ($userManager->isLogin()){ if ($userManager->isLogin()){
header('Location: ./'); header('Location: ' . BASEDIR);
} }
$template = new Template('login'); $template = new Template('login');

View File

@ -5,7 +5,7 @@ class Logout extends Template
{ {
global $userManager; global $userManager;
$userManager->logout(); $userManager->logout();
header('Location: /vasek/home/login', TRUE); header('Location: ' . BASEDIR . 'login');
die(); die();
} }
} }

View File

@ -9,7 +9,7 @@ class Rooms extends Template
global $lang; global $lang;
if (!$userManager->isLogin()){ if (!$userManager->isLogin()){
header('Location: ./login'); header('Location: ' . BASEDIR . 'login');
} }
$template = new Template('rooms'); $template = new Template('rooms');

View File

@ -7,7 +7,7 @@ class Scene extends Template
global $langMng; global $langMng;
if (!$userManager->isLogin()){ if (!$userManager->isLogin()){
header('Location: ./'); header('Location: ' . BASEDIR . 'login');
} }
$template = new Template('scene'); $template = new Template('scene');

View File

@ -7,7 +7,7 @@ class Setting extends Template
global $langMng; global $langMng;
if (!$userManager->isLogin()){ if (!$userManager->isLogin()){
header('Location: ./login'); header('Location: ' . BASEDIR . 'login');
} }
$automations = []; $automations = [];