📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: statistics.php
<?php /* * SPEEDYCACHE * https://speedycache.com/ * (c) SpeedyCache Team */ namespace SpeedyCache; if( !defined('SPEEDYCACHE_PRO_VERSION') ){ die('HACKING ATTEMPT!'); } class Statistics{ static function init($extension = false, $size = false){ global $speedycache; $speedycache->settings['static_extension'] = $extension ? $extension : false; $speedycache->settings['static_size'] = $size ? $size : false; } static function get(){ $desktop_files = get_option('speedycache_html'); $desktop_size = round(get_option('speedycache_html_size')/1000, 2); $mobile_files = get_option('speedycache_mobile'); $mobile_size = round(get_option('speedycache_mobile_size')/1000, 2); $js_files = get_option('speedycache_js'); $js_size = round(get_option('speedycache_js_size')/1000, 2); $css_files = get_option('speedycache_css'); $css_size = round(get_option('speedycache_css_size')/1000, 2); $stats = array(); $stats['desktop'] = array('size' => $desktop_size, 'file' => $desktop_files); $stats['mobile'] = array('size' => $mobile_size, 'file' => $mobile_files); $stats['js'] = array('size' => $js_size, 'file' => $js_files); $stats['css'] = array('size' => $css_size, 'file' => $css_files); return $stats; } static function update_db(){ global $speedycache; // We do not need stats if its a test if(!empty($_GET['test_speedycache'])){ return; } $option_name = 'speedycache_' . $speedycache->settings['static_extension']; $option_name_for_size = $option_name . '_size'; $current_opt = get_option($option_name); if(!empty($current_opt)){ $current_opt = $current_opt + 1; update_option($option_name, $current_opt); }else{ update_option($option_name, 1); } $size_current_opt = get_option($option_name_for_size); if(!empty($size_current_opt)){ $size_current_opt = $size_current_opt + $speedycache->settings['static_size']; update_option($option_name_for_size, $size_current_opt); return; } update_option($option_name_for_size, $speedycache->settings['static_size']); } static function statics(){ ?> <div class="speedycache-block"> <div class="speedycache-block-title"> <h2 id="cache-statics-h2"><?php _e('Cache Statistics', 'speedycache'); ?></h2> </div> <div id="speedycache-cache-statics"> <div id="speedycache-cache-statics-desktop" class="speedycache-card"> <div class="speedycache-card-body"> <div class="speedycache-stats-info"> <span>Desktop Cache</span> <p id="speedycache-cache-statics-desktop-data"> <span class="speedycache-size">0Kb</span><br/> <span class="speedycache-files">of 0 Items</span> </p> </div> <div class="speedycache-stat-icon"> <i class="fas fa-desktop"></i> <!--<span class="dashicons dashicons-desktop"></span>--> </div> </div> </div> <div id="speedycache-cache-statics-mobile" class="speedycache-card"> <div class="speedycache-card-body"> <div class="speedycache-stats-info"> <span>Mobile Cache</span> <p id="speedycache-cache-statics-mobile-data"> <span class="speedycache-size">0Kb</span><br/> <span class="speedycache-files">of 0 Items</span></p> </div> <div class="speedycache-stat-icon"> <i class="fas fa-mobile"></i> </div> </div> </div> <div id="speedycache-cache-statics-css" class="speedycache-card"> <div class="speedycache-card-body"> <div class="speedycache-stats-info"> <span>Minified CSS</span> <p id="speedycache-cache-statics-css-data"> <span class="speedycache-size">0Kb</span><br/> <span class="speedycache-files">of 0 Items</span> </p> </div> <div class="speedycache-stat-icon"><i class="fab fa-css3-alt"></i></div> </div> </div> <div id="speedycache-cache-statics-js" class="speedycache-card"> <div class="speedycache-card-body"> <div class="speedycache-stats-info"> <span>Minified JS</span> <p id="speedycache-cache-statics-js-data"> <span class="speedycache-size">0Kb</span><br/> <span class="speedycache-files">of 0 Items</span> </p> </div> <div class="speedycache-stat-icon"><i class="fab fa-js-square"></i></div> </div> </div> </div> </div> <?php } }
Save