HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: //usr/src/corporate/for-upload/public/installer/include.php
<?php

  session_start();
  
  ini_set('display_errors', 1);
  error_reporting(E_ALL);
  
  ini_set('date.timezone', 'GMT');
  if(function_exists('date_default_timezone_set')) {
    date_default_timezone_set('GMT');
  } else {
    @putenv('TZ=GMT'); // Don't throw a warning if system in safe mode
  } // if
  
  define('PROBE_VERSION', '1.0');
  define('PROBE_FOR', 'activeCollab 1.0');

  define('STATUS_OK', 'ok');
  define('STATUS_WARNING', 'warning');
  define('STATUS_ERROR', 'error');
  
  define('INSTALLER_PATH', dirname(__FILE__));
  define('INSTALLATION_PATH', realpath(INSTALLER_PATH . '/../../'));

  // Include library
  require_once INSTALLER_PATH . '/library/functions.php';
  require_once INSTALLER_PATH . '/library/classes/Template.class.php';
  require_once INSTALLER_PATH . '/library/Installation.class.php';
  
?>