| Server IP : 81.19.159.101 / Your IP : 216.73.217.111 Web Server : Apache System : Linux www58.world4you.com 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : ftp8817043 ( 2681) PHP Version : 8.4.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/.sites/103/site8817043/web/wp-content/plugins/akeebabackupwp/app/Solo/Cli/ |
Upload File : |
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
namespace Solo\Cli;
class CheckFailedCli extends AbstractCliApplication
{
/**
* Method to run the application routines. Most likely you will want to instantiate a controller
* and execute it, or perform some sort of task directly.
*
* @return void
*/
protected function doExecute()
{
$debugmessage = '';
if ($this->getContainer()->input->get('debug', -1, 'int') != -1)
{
if (!defined('AKEEBADEBUG'))
{
define('AKEEBADEBUG', 1);
}
$debugmessage = "*** DEBUG MODE ENABLED ***\n";
}
$version = AKEEBABACKUP_VERSION;
$date = AKEEBABACKUP_DATE;
$start_backup = time();
$phpversion = PHP_VERSION;
$phpenvironment = PHP_SAPI;
if ($this->getContainer()->input->get('quiet', -1, 'int') == -1)
{
$softwareName = defined('ABSPATH') ? 'Akeeba Backup' : 'Akeeba Solo';
$year = gmdate('Y');
echo <<<ENDBLOCK
$softwareName Check failed CLI $version ($date)
Copyright (C) 2014-$year Nicholas K. Dionysopoulos / Akeeba Ltd
-------------------------------------------------------------------------------
$softwareName is Free Software, distributed under the terms of the GNU General
Public License version 3 or, at your option, any later version.
This program comes with ABSOLUTELY NO WARRANTY as per sections 15 & 16 of the
license. See http://www.gnu.org/licenses/gpl-3.0.html for details.
-------------------------------------------------------------------------------
You are using PHP $phpversion ($phpenvironment)
$debugmessage
Checking for failed backups
ENDBLOCK;
}
// Forced CLI mode settings
if (!defined('AKEEBA_BACKUP_ORIGIN'))
{
define('AKEEBA_BACKUP_ORIGIN', 'cli');
}
/** @var \Solo\Model\Main $cpanelModel */
$cpanelModel = $this->container->mvcFactory->makeModel('Main');
$result = $cpanelModel->notifyFailed();
echo implode("\n", $result['message']);
$this->close();
}
}