??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/am1atec.co.uk/wp-content/plugins/litespeed-cache/src/error.cls.php
⬅ Kembali
<?php
/**
* The error class.
*
* @package LiteSpeed
* @since 3.0
*/
namespace LiteSpeed;
defined( 'WPINC' ) || exit();
/**
* Class Error
*
* Handles error message translation and throwing for LiteSpeed Cache.
*
* @since 3.0
*/
class Error {
/**
* Error code mappings to numeric values.
*
* @since 3.0
* @var array
*/
private static $code_set = [
'HTA_LOGIN_COOKIE_INVALID' => 4300, // .htaccess did not find.
'HTA_DNF' => 4500, // .htaccess did not find.
'HTA_BK' => 9010, // backup
'HTA_R' => 9041, // read htaccess
'HTA_W' => 9042, // write
'HTA_GET' => 9030, // failed to get
];
/**
* Throw an error with message
*
* Throws an exception with the translated error message.
*
* @since 3.0
* @access public
* @param string $code Error code.
* @param mixed $args Optional arguments for message formatting.
* @throws \Exception Always throws an exception with the error message.
*/
public static function t( $code, $args = null ) {
throw new \Exception( wp_kses_post( self::msg( $code, $args ) ) );
}
/**
* Translate an error to description
*
* Converts error codes to human-readable messages.
*
* @since 3.0
* @access public
* @param string $code Error code.
* @param mixed $args Optional arguments for message formatting.
* @return string Translated error message.
*/
public static function msg( $code, $args = null ) {
switch ( $code ) {
case 'qc_setup_required':
$msg =
sprintf(
__( 'You will need to finish %s setup to use the online services.', 'litespeed-cache' ),
'<strong>QUIC.cloud</strong>'
) .
Doc::learn_more(
admin_url( 'admin.php?page=litespeed-general' ),
__( 'Click here to set.', 'litespeed-cache' ),
true,
false,
true
);
break;
case 'out_of_daily_quota':
$msg = __( 'You have used all of your daily quota for today.', 'litespeed-cache' );
$msg .=
' ' .
Doc::learn_more(
'https://docs.quic.cloud/billing/services/#daily-limits-on-free-quota-usage',
__( 'Learn more or purchase additional quota.', 'litespeed-cache' ),
false,
false,
true
);
break;
case 'out_of_quota':
$msg = __( 'You have used all of your quota left for current service this month.', 'litespeed-cache' );
$msg .=
' ' .
Doc::learn_more(
'https://docs.quic.cloud/billing/services/#daily-limits-on-free-quota-usage',
__( 'Learn more or purchase additional quota.', 'litespeed-cache' ),
false,
false,
true
);
break;
case 'too_many_requested':
$msg = __( 'You have too many requested images, please try again in a few minutes.', 'litespeed-cache' );
break;
case 'too_many_notified':
$msg = __( 'You have images waiting to be pulled. Please wait for the automatic pull to complete, or pull them down manually now.', 'litespeed-cache' );
break;
case 'empty_list':
$msg = __( 'The image list is empty.', 'litespeed-cache' );
break;
case 'lack_of_param':
$msg = __( 'Not enough parameters. Please check if the QUIC.cloud connection is set correctly', 'litespeed-cache' );
break;
case 'unfinished_queue':
$msg = __( 'There is proceeding queue not pulled yet.', 'litespeed-cache' );
break;
case 0 === strpos( $code, 'unfinished_queue ' ):
$msg = sprintf(
__( 'There is proceeding queue not pulled yet. Queue info: %s.', 'litespeed-cache' ),
'<code>' . substr( $code, strlen( 'unfinished_queue ' ) ) . '</code>'
);
break;
case 'err_alias':
$msg = __( 'The site is not a valid alias on QUIC.cloud.', 'litespeed-cache' );
break;
case 'site_not_registered':
$msg = __( 'The site is not registered on QUIC.cloud.', 'litespeed-cache' );
break;
case 'err_key':
$msg = __( 'The QUIC.cloud connection is not correct. Please try to sync your QUIC.cloud connection again.', 'litespeed-cache' );
break;
case 'heavy_load':
$msg = __( 'The current server is under heavy load.', 'litespeed-cache' );
break;
case 'redetect_node':
$msg = __( 'Online node needs to be redetected.', 'litespeed-cache' );
break;
case 'err_overdraw':
$msg = __( 'Credits are not enough to proceed the current request.', 'litespeed-cache' );
break;
case 'W':
$msg = __( '%s file not writable.', 'litespeed-cache' );
break;
case 'HTA_DNF':
if ( ! is_array( $args ) ) {
$args = [ '<code>' . $args . '</code>' ];
}
$args[] = '.htaccess';
$msg = __( 'Could not find %1$s in %2$s.', 'litespeed-cache' );
break;
case 'HTA_LOGIN_COOKIE_INVALID':
$msg = sprintf( __( 'Invalid login cookie. Please check the %s file.', 'litespeed-cache' ), '.htaccess' );
break;
case 'HTA_BK':
$msg = sprintf( __( 'Failed to back up %s file, aborted changes.', 'litespeed-cache' ), '.htaccess' );
break;
case 'HTA_R':
$msg = sprintf( __( '%s file not readable.', 'litespeed-cache' ), '.htaccess' );
break;
case 'HTA_W':
$msg = sprintf( __( '%s file not writable.', 'litespeed-cache' ), '.htaccess' );
break;
case 'HTA_GET':
$msg = sprintf( __( 'Failed to get %s file contents.', 'litespeed-cache' ), '.htaccess' );
break;
case 'failed_tb_creation':
$msg = __( 'Failed to create table %1$s! SQL: %2$s.', 'litespeed-cache' );
break;
case 'crawler_disabled':
$msg = __( 'Crawler disabled by the server admin.', 'litespeed-cache' );
break;
case 'try_later': // QC error code
$msg = __( 'Previous request too recent. Please try again later.', 'litespeed-cache' );
break;
case 0 === strpos( $code, 'try_later ' ):
$msg = sprintf(
__( 'Previous request too recent. Please try again after %s.', 'litespeed-cache' ),
'<code>' . Utility::readable_time( substr( $code, strlen( 'try_later ' ) ), 3600, true ) . '</code>'
);
break;
case 'waiting_for_approval':
$msg = __( 'Your application is waiting for approval.', 'litespeed-cache' );
break;
case 'callback_fail_hash':
$msg = __( 'The callback validation to your domain failed due to hash mismatch.', 'litespeed-cache' );
break;
case 'callback_fail':
$msg = __( 'The callback validation to your domain failed. Please make sure there is no firewall blocking our servers.', 'litespeed-cache' );
break;
case substr( $code, 0, 14 ) === 'callback_fail ':
$msg =
__( 'The callback validation to your domain failed. Please make sure there is no firewall blocking our servers. Response code: ', 'litespeed-cache' ) .
substr( $code, 14 );
break;
case 'forbidden':
$msg = __( 'Your domain has been forbidden from using our services due to a previous policy violation.', 'litespeed-cache' );
break;
case 'err_dns_active':
$msg = __(
'You cannot remove this DNS zone, because it is still in use. Please update the domain\'s nameservers, then try to delete this zone again, otherwise your site will become inaccessible.',
'litespeed-cache'
);
break;
default:
$msg = __( 'Unknown error', 'litespeed-cache' ) . ': ' . $code;
break;
}
if ( null !== $args ) {
$msg = is_array( $args ) ? vsprintf( $msg, $args ) : sprintf( $msg, $args );
}
if ( isset( self::$code_set[ $code ] ) ) {
$msg = 'ERROR ' . self::$code_set[ $code ] . ': ' . $msg;
}
return $msg;
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
📁 cdn
dir
—
2026-06-25 05:34
📁 data_structure
dir
—
2026-06-25 05:34
🐘 activation.cls.php
php
17.3 KB
2026-04-01 16:54
🐘 admin-display.cls.php
php
48.5 KB
2026-04-01 16:54
🐘 admin-settings.cls.php
php
11.1 KB
2026-04-01 16:54
🐘 admin.cls.php
php
6.1 KB
2026-04-01 16:54
🐘 api.cls.php
php
10.4 KB
2026-04-01 16:54
🐘 avatar.cls.php
php
8.7 KB
2026-04-01 16:54
🐘 base.cls.php
php
37.7 KB
2026-04-01 16:54
🐘 cdn.cls.php
php
15.9 KB
2026-04-01 16:54
🐘 cloud-auth-callback.trait.php
php
10.4 KB
2026-04-01 16:54
🐘 cloud-auth-ip.trait.php
php
4.3 KB
2026-04-01 16:54
🐘 cloud-auth.trait.php
php
9.4 KB
2026-04-01 16:54
🐘 cloud-misc.trait.php
php
10.3 KB
2026-04-01 16:54
🐘 cloud-node.trait.php
php
5.9 KB
2026-04-01 16:54
🐘 cloud-request.trait.php
php
19.7 KB
2026-04-01 16:54
🐘 cloud.cls.php
php
7.3 KB
2026-04-01 16:54
🐘 conf.cls.php
php
19.5 KB
2026-04-01 16:54
🐘 control.cls.php
php
24.3 KB
2026-04-01 16:54
🐘 core.cls.php
php
21 KB
2026-04-01 16:54
🐘 crawler-map.cls.php
php
19.4 KB
2026-04-01 16:54
🐘 crawler.cls.php
php
44.7 KB
2026-04-01 16:54
🐘 css.cls.php
php
17.8 KB
2026-04-01 16:54
🐘 data.cls.php
php
22.2 KB
2026-04-01 16:54
🐘 data.upgrade.func.php
php
5.7 KB
2026-04-01 16:54
🐘 db-optm.cls.php
php
15.3 KB
2026-04-01 16:54
🐘 debug2.cls.php
php
18.4 KB
2026-04-01 16:54
🐘 doc.cls.php
php
5.4 KB
2026-04-01 16:54
🐘 error.cls.php
php
7.4 KB
2026-04-01 16:54
🐘 esi.cls.php
php
27.2 KB
2026-04-01 16:54
🐘 file.cls.php
php
10.6 KB
2026-04-01 16:54
🐘 guest.cls.php
php
2.8 KB
2026-04-01 16:54
🐘 gui.cls.php
php
36.6 KB
2026-04-01 16:54
🐘 health.cls.php
php
2.8 KB
2026-04-01 16:54
🐘 htaccess.cls.php
php
29.8 KB
2026-04-01 16:54
🐘 img-optm-manage.trait.php
php
30.8 KB
2026-04-01 16:54
🐘 img-optm-pull.trait.php
php
22.1 KB
2026-04-01 16:54
🐘 img-optm-send.trait.php
php
21.9 KB
2026-04-01 16:54
🐘 img-optm.cls.php
php
5.3 KB
2026-04-01 16:54
🐘 import.cls.php
php
4.3 KB
2026-04-01 16:54
🐘 import.preset.cls.php
php
5.5 KB
2026-04-01 16:54
🐘 lang.cls.php
php
17 KB
2026-04-01 16:54
🐘 localization.cls.php
php
4 KB
2026-04-01 16:54
🐘 media.cls.php
php
44.1 KB
2026-04-01 16:54
🐘 metabox.cls.php
php
5.3 KB
2026-04-01 16:54
🐘 object-cache-wp.cls.php
php
18.8 KB
2026-04-01 16:54
🐘 object-cache.cls.php
php
20.9 KB
2026-04-01 16:54
🐘 object.lib.php
php
14.2 KB
2026-04-01 16:54
🐘 optimize.cls.php
php
38.6 KB
2026-04-01 16:54
🐘 optimizer.cls.php
php
10.5 KB
2026-04-01 16:54
🐘 placeholder.cls.php
php
17.9 KB
2026-04-01 16:54
🐘 purge.cls.php
php
34.4 KB
2026-04-01 16:54
🐘 report.cls.php
php
6.1 KB
2026-04-01 16:54
🐘 rest.cls.php
php
9.1 KB
2026-04-01 16:54
🐘 root.cls.php
php
14.3 KB
2026-04-01 16:54
🐘 router.cls.php
php
20.8 KB
2026-04-01 16:54
🐘 str.cls.php
php
3.1 KB
2026-04-01 16:54
🐘 tag.cls.php
php
9.3 KB
2026-04-01 16:54
🐘 task.cls.php
php
7 KB
2026-04-01 16:54
🐘 tool.cls.php
php
4.2 KB
2026-04-01 16:54
🐘 ucss.cls.php
php
16.3 KB
2026-04-01 16:54
🐘 utility.cls.php
php
26 KB
2026-04-01 16:54
🐘 vary.cls.php
php
21.3 KB
2026-04-01 16:54
🐘 vpi.cls.php
php
9.4 KB
2026-04-01 16:54