The site is on a shared IP, so I can't go directly to the site that way.This is what I see in the config file (certain parts I've redacted for security purposes):#Disable direct access.define('ROOT_PATH', '/osticket/');if(!strcasecmp(basename($_SERVER),basename(__FILE__)) || !defined('ROOT_PATH')) die('kwaheri rafiki!');#Install flagdefine('OSTINSTALLED',TRUE);if(OSTINSTALLED!=TRUE){ if(!file_exists(ROOT_PATH.'setup/install.php')) die('Error: Contact system admin.'); //Something is really wrong! //Invoke the installer. header('Location: '.ROOT_PATH.'setup/install.php'); exit;}# Encrypt/Decrypt secret key - randomly generated during installation.define('SECRET_SALT','REDACTED');#Default admin email. Used only on db connection issues and related alerts.define('ADMIN_EMAIL','REDACTED');#Mysql Login infodefine('DBTYPE','mysql');define('DBHOST','localhost');define('DBNAME','osticket_4');define('DBUSER','REDACTED');define('DBPASS','REDACTED!');#Table prefixdefine('TABLE_PREFIX','');define('APS_UPGRADE','On');error_reporting(0);?>