Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
media /
com_jchoptimize /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
bootstrap
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
chosen
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
admin-joomla-comp.js
612
B
-rwxr-xr-x
2022-08-17 13:56
admin-joomla.js
5.14
KB
-rwxr-xr-x
2022-08-17 13:56
admin-utility.js
2.88
KB
-rwxr-xr-x
2021-09-17 09:22
index.html
53
B
-rwxr-xr-x
2022-08-17 13:56
jquery.collapsible.js
13.47
KB
-rwxr-xr-x
2021-09-17 09:22
jquery.filetree.js
11.11
KB
-rwxr-xr-x
2021-09-17 09:22
lazysizes.js
17.22
KB
-rwxr-xr-x
2021-09-17 09:22
ls.loader.js
359
B
-rwxr-xr-x
2021-09-17 09:22
platform-joomla.js
5.07
KB
-rwxr-xr-x
2022-08-17 13:56
Save
Rename
/** * JCH Optimize - Performs several front-end optimizations for fast downloads * * @package jchoptimize/core * @author Samuel Marshall <samuel@jch-optimize.net> * @copyright Copyright (c) 2020 Samuel Marshall / JCH Optimize * @license GNU/GPLv3, or later. See LICENSE file * * If LICENSE file missing, see <http://www.gnu.org/licenses/>. */ function applyAutoSettings(int, pos) { var selectoron = getSelector(int, "on"); var selectoroff = getSelector(int, "off"); if (jQuery(selectoron).length) { jQuery(selectoron).val("1"); } if (jQuery(selectoroff).length) { jQuery(selectoroff).val("0"); } submitJchSettings(); } ; jQuery(document).ready(function () { var i = 1; for (i = 1; i <= 6; i++) { var flag = true; var selectoron = getSelector(i, "on"); var selectoroff = getSelector(i, "off"); jQuery(selectoron + "[value=1]").each(function () { var attr = jQuery(this).attr("checked"); if (typeof attr === typeof undefined || attr === false) { flag = false; return false; } }); if (flag == true) { jQuery(selectoroff + "[value=0]").each(function () { var attr = jQuery(this).attr("checked"); if (typeof attr === typeof undefined || attr === false) { flag = false; return false; } }) } if (flag == true) { jQuery("div.icon.enabled.settings-" + i + " a i#toggle").addClass("on"); break; } } }); function addJchOption(id) { var input = jQuery("#" + id + " + .chzn-container > .chzn-choices > .search-field > input, #" + id + " + .chosen-container > .chosen-choices > .search-field > input"); var txt = input.val(); if (txt === input.prop("defaultValue")) { txt = null; } if (txt === null || txt === "") { alert("Please input an item in the box to add to the drop-down list"); return false; } jQuery("#" + id).append(jQuery("<option/>", { value: txt.replace("...", ""), text: txt }).attr("selected", "selected")); jQuery("#" + id).trigger("liszt:updated"); jQuery("#" + id).trigger("chosen:updated"); } ; function ucFirst(string) { return string[0].toUpperCase() + string.slice(1); }; function getTimeStamp() { return new Date().getTime(); };