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 /
wordpress /
Delete
Unzip
Name
Size
Permission
Date
Action
A2ReCaptcha
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
bin
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
LSCWP_Default_Configuration.data
7.4
KB
-rw-r--r--
2025-04-29 15:41
Optimizations.php
241
B
-rw-r--r--
2025-04-29 15:41
am-bundle.php
1010
B
-rw-r--r--
2025-04-29 15:41
class.A2_Optimized_Private_Optimizations.php
36.09
KB
-rw-r--r--
2025-04-29 15:41
class.A2_Optimized_Private_Optimizations_v3.php
35.31
KB
-rw-r--r--
2025-04-29 15:41
cron-job.php
2.39
KB
-rw-r--r--
2025-04-29 15:41
fix-w3tc.php
2.02
KB
-rw-r--r--
2025-04-29 15:41
hcaptcha_lib.php
2.1
KB
-rw-r--r--
2025-04-29 15:41
managedwp_functions.php
3.78
KB
-rw-r--r--
2025-04-29 15:41
opt-init-variables.txt
797
B
-rw-r--r--
2025-04-29 15:41
optimize.sh
12.29
KB
-rw-r--r--
2025-04-29 15:41
p2-wp-opt-v1.data
7.39
KB
-rw-r--r--
2025-04-29 15:41
p2-wp-opt-v1.sh
20.48
KB
-rwxr-xr-x
2025-04-29 15:41
pagespeed.php
3.2
KB
-rw-r--r--
2025-04-29 15:41
privkey
0
B
-rw-r--r--
2025-04-29 15:41
pubkey
0
B
-rw-r--r--
2025-04-29 15:41
recaptcha_autoload.php
1.14
KB
-rw-r--r--
2025-04-29 15:41
recaptchalib.php
9.36
KB
-rw-r--r--
2025-04-29 15:41
recaptchalib_v2.php
2.95
KB
-rw-r--r--
2025-04-29 15:41
turbo-default.txt
7.39
KB
-rw-r--r--
2025-04-29 15:41
warp-imagick.json
940
B
-rw-r--r--
2025-04-29 15:41
wp-opt-v1.sh
41.12
KB
-rwxr-xr-x
2025-04-29 15:41
Save
Rename
<?php function a2opt_daily_cron_run(){ /* Jobs we want to run once per day go here... to be filled in at a later date */ } /* Hook the a2opt_daily_cron_run function above with the a2opt_daily_cron schedule */ add_action( 'a2opt_daily_cron', 'a2opt_daily_cron_run' ); function a2opt_update_check() { $a2opt_plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/a2-optimized-wp/a2-optimized.php'); if (get_site_option('a2_optimized_plugin_upgrade__version') != $a2opt_plugin_data['Version']) { a2opt_upgrade(); } } /* Check to see if the A2 Optimized plugin has been updated, and run operations if so */ add_action('plugins_loaded', 'a2opt_update_check'); function a2opt_upgrade(){ $a2opt_plugin_data = get_plugin_data( WP_PLUGIN_DIR . '/a2-optimized-wp/a2-optimized.php'); /* We want to scheduel this cron for everyone, regardless of installed version, but only once */ if(!get_site_option('a2_daily_cron_scheduled')){ $args = array( false ); if( !wp_next_scheduled( 'a2opt_daily_cron', $args ) ) { wp_schedule_event( time(), 'daily', 'a2opt_daily_cron', $args ); update_option('a2_daily_cron_scheduled', true); } } /* Version specific updates go below: DB changes, etc */ if(version_compare($a2opt_plugin_data['Version'], '2.0.8.6') < 0){ /* Example for versions older than 2.0.8.6 */ } if(version_compare($a2opt_plugin_data['Version'], '2.0.10.7.5') < 0){ /* Updated login URL plugin If user has the old version installed we need to migrate them to the new one */ if(is_plugin_active('rename-wp-login/rename-wp-login.php')){ deactivate_plugins('rename-wp-login/rename-wp-login.php'); $api = plugins_api('plugin_information', array('slug' => 'easy-hide-login')); $upgrader = new Plugin_Upgrader(new A2_Plugin_Installer_Skin(compact('title', 'url', 'nonce', 'plugin', 'api'))); $upgrader->install($api->download_link); activate_plugin('easy-hide-login/wp-hide-login.php'); $rwl_page = get_option('a2_login_page'); update_option('wpseh_l01gnhdlwp', $rwl_page); } } /* Store current plugin version so this doesn't run again for this version */ update_option('a2_optimized_plugin_upgrade__version', $a2opt_plugin_data['Version']); }