| 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/helpers/templates/wp/ |
Upload File : |
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
if (!isset($exc))
{
die();
}
if (defined('WPINC'))
{
$network = is_multisite() ? 'network/' : '';
$abwpURL = admin_url() . $network . 'admin.php?page=' . AkeebaBackupWP::$dirName . '/' . AkeebaBackupWP::$fileName;
}
switch ($exc->getCode())
{
case 400:
$header = 'HTTP/1.1 400 Bad Request';
$appError = 'Bad Request';
break;
case 401:
$header = 'HTTP/1.1 401 Unauthorized';
$appError = 'Unauthorised';
break;
case 403:
$header = 'HTTP/1.1 403 Forbidden';
$appError = 'Access Denied';
break;
case 404:
$header = 'HTTP/1.1 404 Not Found';
$appError = 'Not Found';
break;
case 501:
$header = 'HTTP/1.1 501 Not Implemented';
$appError = 'Not Implemented';
break;
case 503:
$header = 'HTTP/1.1 503 Service Unavailable';
$appError = 'Service Unavailable';
break;
case 500:
default:
$header = 'HTTP/1.1 500 Internal Server Error';
$appError = 'Application Error';
break;
}
// Avoid errors if headers were already sent
if (!headers_sent())
{
header($header);
}
?>
<div class="akeeba-renderer-fef" id="error-wrap">
<div class="akeeba-panel--danger">
<header class="akeeba-block-header">
<h2>
<span class="akeeba-label--grey"><?php echo $exc->getCode() ?></span> <?php echo $appError ?>
</h2>
</header>
<?php if (defined('AKEEBADEBUG')): ?>
<p> </p>
<p>
Please submit the following error message and trace in its entirety when requesting support
</p>
<h4 class="text-info" id="error-message-text">
<?= get_class($exc) ?> <?php echo $exc->getCode() . ' :: ' . $exc->getMessage(); ?>
in
<?php echo $exc->getFile() ?>
<span class="label label-info">L <?php echo $exc->getLine(); ?></span>
</h4>
<p>Debug backtrace</p>
<pre class="bg-info"><?php echo $exc->getTraceAsString(); ?></pre>
<?php else: ?>
<p id="error-message-text">
<?= get_class($exc) ?>: <?php echo $exc->getMessage(); ?>
</p>
<?php endif; ?>
<?php if (defined('WPINC')): ?>
<hr />
<div class="akeeba-container--50-50">
<div>
<a href="<?= $abwpURL ?>" class="akeeba-btn--default">
<span class="akion-ios-arrow-back"></span>
Akeeba Backup Control Panel
</a>
</div>
<div>
<a href="<?= $abwpURL ?>&_ak_reset_session=1" class="akeeba-btn--red">
<span class="akion-nuclear"></span>
Reset temporary storage
</a>
<p class="akeeba-help-text">
Use this button if you get <var>Access Denied</var> or <var>Application Error</var> messages when trying to access the Akeeba Backup Control Panel despite being logged in as a WordPress administrator. It clears Akeeba Backup's temporary data storage and tries to reload the Control Panel page which fixes most of these issues.
</p>
</div>
</div>
<?php endif; ?>
</div>