// Set the current directory correctly for CLI requests
if(defined('STDIN'))
{
chdir(dirname(__FILE__));
}
if(($_temp=realpath($system_path))!==FALSE)
{
$system_path=$_temp.DIRECTORY_SEPARATOR;
}
else
{
// Ensure there's a trailing slash
$system_path=strtr(
rtrim($system_path,'/\\'),
'/\\',
DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR
).DIRECTORY_SEPARATOR;
}
// Is the system path correct?
if(!is_dir($system_path))
{
header('HTTP/1.1 503 Service Unavailable.',TRUE,503);
echo'Your system folder path does not appear to be set correctly. Please open the following file and correct this: '.pathinfo(__FILE__,PATHINFO_BASENAME);