| Server IP : 217.160.0.223 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.38-i1-ampere+ #1084 SMP Tue Jul 7 09:18:31 CEST 2026 aarch64 User : sws1073902667 ( 1073902667) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/www/public/wp-content/mu-plugins/ |
Upload File : |
<?php
/*
Plugin Name: WordPress automation by Installatron
Description: Management of this WordPress site is provided by Installatron.
*/
// This plugin was added because Automatic Updates, Automatic Backups, and
// other features are managed externally by Installatron.
// To block this plugin, create an empty file in the same directory named:
// block-automation-by-installatron.php
// Turn off WordPress automatic updates since these are managed externally.
// If you remove this to re-enable WordPress's automatic updates then it's
// advised to disable auto-updating in Installatron.
add_filter( 'auto_update_core', '__return_false', -9999 );
add_filter( 'allow_dev_auto_core_updates', '__return_false', -9999 );
add_filter( 'allow_minor_auto_core_updates', '__return_false', -9999 );
add_filter( 'allow_major_auto_core_updates', '__return_false', -9999 );
add_filter( 'auto_update_translation', '__return_false', -9999 );
// Disable WordPress site health test for Automatic Updates since these are
// managed externally by Installatron.
function installatron_filter_site_status_tests($tests) {
unset($tests['async']['background_updates']);
return $tests;
}
add_filter('site_status_tests', 'installatron_filter_site_status_tests');