| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/central/pipe/ |
Upload File : |
<?php
use WHMCS\Cron;
use WHMCS\Exception\Fatal;
use WHMCS\Terminus;
/**
* pipe/pop.php
*
* This file is deprecated and here for backwards compatibility.
*
* The distributed version of WHMCS provides the main application pop in
* crons/pop.php
*
* The crons folder may be moved to any place above or below the docroot.
*
* For more information please see http://docs.whmcs.com/Custom_Crons_Directory
*/
/** @var WHMCS\Application $whmcs */
require dirname(__DIR__) . DIRECTORY_SEPARATOR . 'init.php';
define('PROXY_FILE', true);
try {
$path = Cron::getCronsPath(basename(__FILE__));
require_once $path;
} catch (Fatal $e) {
echo Cron::formatOutput(Cron::getCronRootDirErrorMessage());
Terminus::getInstance()->doExit(1);
} catch (\Exception $e) {
echo Cron::formatOutput(Cron::getCronPathErrorMessage());
Terminus::getInstance()->doExit(1);
}