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/captcha.php
<?php

  /**
   * Load and passthru captcha
   */
  
  session_start();
  ini_set('display_errors', 1);
  error_reporting(E_ALL);
  
  // Make sure that we have timezone set (PHP 5.3.0 compatibility)
  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
  
  require_once '../config/config.php';
  require_once ROOT . '/angie.php';
  
  require_once ANGIE_PATH . '/functions/files.php';
  
  require_once ANGIE_PATH . '/classes/AngieObject.class.php';
  require_once ANGIE_PATH . '/classes/captcha/Captcha.class.php';

  $captcha = new Captcha(200,30);
  $captcha->Create();

?>