uawdijnntqw1x1x1
IP : 216.73.217.142
Hostname : localhost.localdomain
Kernel : Linux localhost.localdomain 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
consult-e-syn
/
public_html
/
c1c92
/
.
/
..
/
cli
/
ats-autoclose-tickets.php
/
/
<?php /** * @package ats * @copyright Copyright (c)2011-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ define('AKEEBA_ATS_CRON_CALLED_FROM_LEGACY', 1); require_once 'ats-cron.php'; /** * Akeeba Ticket System auto-reply CLI app */ class ATSAutocloseApp extends ATSCron { /** * The main entry point of the application */ public function doExecute() { // Write the application header $this->out('Akeeba Ticket System -- Automatic ticket close script'); $this->out('Copyright 2011-' . gmdate('Y') . ' Akeeba Ltd'); $this->out(str_repeat('=', 79)); $this->out(); global $argv; $this->out(str_repeat('~', 79)); $this->out('ATTENTION!'); $this->out(str_repeat('~', 79)); $this->out(); $this->out('This script has been deprecated. Instead you need to use the ats-cron.php'); $this->out('script e.g.'); $this->out(); $this->out(PHP_BINARY . ' ats-cron.php --command=autoclose'); $this->out(); $this->out('You will also need to enable the "Akeeba Ticket System - Automatically'); $this->out('close old tickets" plugin.'); $this->out(); $this->out('For a limited amount of time this script will call ats-cron.php for you'); $this->out('automatically, preserving compatibility with previous versions of Akeeba'); $this->out('Ticket System. Eventually it will be removed, meaning you need to make the'); $this->out('aforementioned change sooner rather than later.'); $this->out(str_repeat('~', 79)); $this->out(); $this->input->set('command', 'autoclose'); $this->input->set('verbose', '1'); parent::doExecute(); } } FOFApplicationCLI::getInstance('ATSAutocloseApp')->execute();
/var/www/consult-e-syn/public_html/c1c92/./../cli/ats-autoclose-tickets.php