Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
a2-optimized /
app /
resources /
javascript /
Delete
Unzip
Name
Size
Permission
Date
Action
angular-spinner
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
ui-utils-0.2.3
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
angular-cookies.js
10.52
KB
-rw-r--r--
2025-04-29 15:40
angular-sanitize.js
23.44
KB
-rw-r--r--
2025-04-29 15:40
angular.min.js
120.31
KB
-rw-r--r--
2025-04-29 15:40
backup.js
857
B
-rw-r--r--
2025-04-29 15:40
main.js
34.43
KB
-rw-r--r--
2025-04-29 15:40
memcached.js
9.87
KB
-rw-r--r--
2025-04-29 15:40
optimize.js
3.85
KB
-rw-r--r--
2025-04-29 15:40
spin.js
9.79
KB
-rw-r--r--
2025-04-29 15:40
turbocache.js
8.86
KB
-rw-r--r--
2025-04-29 15:40
ui-bootstrap-tpls-0.11.2.js
138.04
KB
-rw-r--r--
2025-04-29 15:40
ui-bootstrap-tpls-0.12.1.js
139.39
KB
-rw-r--r--
2025-04-29 15:40
Save
Rename
var a2_optimized_turbocache_controller = mainModule.controller('A2OptTurboCacheController', ['$scope', '$modal', '$log', '$http', '$timeout', function ($scope, $modal, $log, $http, $timeout) { $scope.action_file = 'turbocache.live.php'; $scope.times = [ '1 Minute', '2 Minutes', '3 Minutes', '5 Minutes', '15 Minutes', '30 Minutes', '1 Hour', '2 Hours', '6 Hours', '12 Hours', '24 Hours', '2 Days', '7 Days', '2 Weeks' ]; $scope.reject_urls = { 'WordPress': ['admin', 'login', 'register', 'authenticate'], 'WooCommerce': ['admin', 'register', 'login', 'cart', 'checkout', 'addons'], 'PrestaShop': ['admin', 'cart', 'order', 'authentication', 'account', 'address', 'friend', 'login', 'logout', 'cuenta', 'autenticacion'], 'Joomla': ['admin', 'login', 'register'], 'Drupal': ['admin', 'login', 'register'], 'Drupal 9': ['admin', 'login', 'register'], 'Magento': ['admin', 'login', 'register', 'cart'], 'OpenCart': ['admin', 'account','checkout','cart'] }; $scope.reject_cookies = { 'WordPress': ['logged_in', 'comment_author', 'wp\-postpass', 'w3tc_logged_out', 'wordpress_logged_in', 'wptouch_switch_toggle'], 'WooCommerce': ['logged_in', 'comment_author', 'wp\-postpass', 'w3tc_logged_out', 'wordpress_logged_in', 'wptouch_switch_toggle'], 'PrestaShop': ['logged', 'cart'], 'Joomla': ['logged_in'], 'Drupal': ['SESS'], 'Drupal 9': ['SESS'], 'Magento': ['logged_in'], 'OpenCart': ['logged_in','cust_logged_in','cart','compare','wishlist'] }; $scope.set_defaults = function (app) { if (angular.isUndefined(app.swiftcache)) { app.swiftcache = {}; } if (angular.isUndefined(app.swiftcache.turbocache)) { app.swiftcache.turbocache = {'enabled': false}; } $http.get($scope.action_file, { params: { 'action': 'get_defaults', 'app': app } }).success(function (data, status, headers, config) { $scope.notloading(); if(angular.isDefined(data.swiftcache)){ app.swiftcache.turbocache = data.swiftcache.turbocache; $scope.set_selectedApp(app, false);//get single app back and store the changes } else{ app.swiftcache = { 'turbocache' : data.swiftcache.turbocache, 'memcached' : {'enabled' : false} }; } }).error(function (data, status, headers, config) { $scope.error(data); }); }; $scope.disable = function (app) { $scope.isloading(); $http.get($scope.action_file, { params: { 'action': 'disable', 'app': app } }).success(function (data, status, headers, config) { $scope.notloading(); $scope.set_selectedApp(data, false);//get single app back and store the changes $scope.is_optimized($scope.vars.selectedApp); $scope.add_alert('success', 'The application was disabled successfully'); }).error(function (data, status, headers, config) { $scope.error(data); }); }; $scope.enable = function (app) { $scope.isloading(); if (angular.isUndefined(app.swiftcache) || angular.isUndefined(app.swiftcache.turbocache) || angular.isUndefined(app.swiftcache.turbocache.ttl)) { $scope.set_defaults(app); } $http.get($scope.action_file, { params: { 'action': 'enable', 'app': $scope.vars.selectedApp } }).success(function (data, status, headers, config) { $scope.set_selectedApp(data, false);//get single app back and store the changes $scope.add_alert('success', 'The application was enabled successfully'); $scope.is_optimized($scope.vars.selectedApp); $scope.notloading(); }).error(function (data, status, headers, config) { $scope.error(data); }); }; $scope.read_config = function (app) { $scope.isloading(); $http.get($scope.action_file, { params: { 'action': 'read_config', 'app': app } }).success(function (data, status, headers, config) { $scope.set_selectedApp(data, false);//get single app back and store the changes $scope.notloading(); }).error(function (data, status, headers, config) { $scope.error(data); }); return false; }; $scope.toggle_url_info = function (app) { if (typeof app.swiftcache.turbocache.url_info !== "undefined") { app.swiftcache.turbocache.url_info = !app.swiftcache.turbocache.url_info; } else { app.swiftcache.turbocache.url_info = true; } }; $scope.toggle_ttl_info = function (app) { if (typeof app.swiftcache.turbocache.ttl_info !== "undefined") { app.swiftcache.turbocache.ttl_info = !app.swiftcache.turbocache.ttl_info; } else { app.swiftcache.turbocache.ttl_info = true; } }; $scope.toggle_cookie_info = function (app) { if (typeof app.swiftcache.turbocache.cookie_info !== "undefined") { app.swiftcache.turbocache.cookie_info = !app.swiftcache.turbocache.cookie_info; } else { app.swiftcache.turbocache.cookie_info = true; } }; $scope.add_rejected_url = function (app) { if (app.swiftcache.turbocache.new_rejected_url != "" && angular.isDefined(app.swiftcache.turbocache.new_rejected_url)) { if (app.swiftcache.turbocache.reject_urls.indexOf(app.swiftcache.turbocache.new_rejected_url) === -1) { app.swiftcache.turbocache.reject_urls.unshift('' + app.swiftcache.turbocache.new_rejected_url); app.swiftcache.turbocache.reject_urls.sort(); $scope.add_alert('info', "You must still press \"Save Settings\" for this change to take effect.", 10000); $scope.add_alert('info', "\"" + app.swiftcache.turbocache.new_rejected_url + "\" has been added to the list of \"Do Not Cache URLs\".", 10000); app.swiftcache.turbocache.new_rejected_url = ''; } else { $scope.add_alert('warning', "\"" + app.swiftcache.turbocache.new_rejected_url + "\" is already in the list of \"Do Not Cache URLs\".", 5000); } app.swiftcache.turbocache.focus_on_new_url = true; } }; $scope.remove_url = function (app, index) { var url = app.swiftcache.turbocache.reject_urls[index]; app.swiftcache.turbocache.reject_urls.splice(index, 1); $scope.add_alert('info', "You must still press \"Save Settings\" for this change to take effect.", 10000); $scope.add_alert('info', "\"" + url + "\" has been removed from the list of \"Do Not Cache URLs\".", 10000); }; $scope.add_rejected_cookie = function (app) { if (app.swiftcache.turbocache.new_rejected_cookie != "") { if (app.swiftcache.turbocache.reject_cookies.indexOf(app.swiftcache.turbocache.new_rejected_cookie) === -1) { app.swiftcache.turbocache.reject_cookies.unshift('' + app.swiftcache.turbocache.new_rejected_cookie); app.swiftcache.turbocache.reject_cookies.sort(); $scope.add_alert('info', "You must still press \"Save Settings\" for this change to take effect.", 10000); $scope.add_alert('info', "\"" + app.swiftcache.turbocache.new_rejected_cookie + "\" has been added to the list of \"Do Not Cache Cookies\".", 10000); app.swiftcache.turbocache.new_rejected_cookie = ''; } else { $scope.add_alert('warning', "\"" + app.swiftcache.turbocache.new_rejected_cookie + "\" is already in the list of \"Do Not Cache Cookies\".", 5000); } } app.swiftcache.turbocache.focus_on_new_cookie = true; }; $scope.remove_cookie = function (app, index) { var cookie = app.swiftcache.turbocache.reject_cookies[index]; app.swiftcache.turbocache.reject_cookies.splice(index, 1); $scope.add_alert('info', "You must still press \"Save Settings\" for this change to take effect.", 10000); $scope.add_alert('info', "\"" + cookie + "\" has been removed from the list of \"Do Not Cache Cookies\".", 10000); }; $scope.init = function (app) { $scope.set_defaults(app); }; $scope.save = function (app) { $scope.isloading(); $http.get($scope.action_file, { params: { 'action': 'save', 'app': app } } ).success(function (data, status, headers, config) { $scope.notloading(); $scope.set_selectedApp(data, false); app = data; $scope.add_alert('success', 'Settings have been saved successfully.'); }).error(function (data, status, headers, config) { $scope.error(data); }); } $scope.reset = function (app) { $scope.set_defaults(app); $scope.add_alert('info', "You must still press \"Save Settings\" for this change to take effect.", 10000); $scope.add_alert('info', "The settings have been reset to the default values for a " + app.type + " application.", 10000); } $scope.purge = function (app) { $scope.isloading(); $http.get($scope.action_file, { params: { 'action': 'purge', 'app': app, } }).success(function (data, status, headers, config) { $scope.notloading(); $scope.add_alert('success', 'Pages have been purged'); }).error(function (data, status, headers, config) { $scope.error(data); }); } } ]);