From 6505fb74e37e97d30617af3b0d1ff3e6398489c1 Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Tue, 3 Sep 2013 16:59:43 -0500 Subject: [PATCH] ROOT_DIR should be used to identify filesystem paths Historically, ROOT_PATH and ROOT_DIR contained the same value; however, ROOT_PATH now points to the URL path where osTicket is installed, whereas ROOT_DIR points to the file system location where osTicket is installed. --- include/ost-sampleconfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ost-sampleconfig.php b/include/ost-sampleconfig.php index d3cbb517a..65ff21c0d 100644 --- a/include/ost-sampleconfig.php +++ b/include/ost-sampleconfig.php @@ -22,7 +22,7 @@ if(!strcasecmp(basename($_SERVER['SCRIPT_NAME']),basename(__FILE__)) || !defined #Install flag define('OSTINSTALLED',FALSE); if(OSTINSTALLED!=TRUE){ - if(!file_exists(ROOT_PATH.'setup/install.php')) die('Error: Contact system admin.'); //Something is really wrong! + if(!file_exists(ROOT_DIR.'setup/install.php')) die('Error: Contact system admin.'); //Something is really wrong! //Invoke the installer. header('Location: '.ROOT_PATH.'setup/install.php'); exit; -- GitLab