diff --git a/index.php b/index.php index 250194b..e37de05 100644 --- a/index.php +++ b/index.php @@ -10,16 +10,18 @@ 'd31d3ef451fe65885928e5e1bdf4af321f702009', 4294967295, '/', - null, + 'demo.beestat.io', $setting->get('force_ssl'), true ); + + // Just so I can make some simpler assumptions in app.php since the + // superglobal is not updated when calling setcookie(). + $_COOKIE['session_key'] = 'd31d3ef451fe65885928e5e1bdf4af321f702009'; } - // var_dump($_COOKIE); // Skip this page entirely if you're logged in. - // if(isset($_COOKIE['session_key']) === true) { - if(preg_match('/app\.beestat\.io/', $_SERVER['HTTP_HOST']) !== 0) { + if($setting->is_demo() === true || preg_match('/app\.beestat\.io/', $_SERVER['HTTP_HOST']) !== 0) { require 'app.php'; } else {