Disabling notification on the Linux server directly via SSH
-
Login to the Plesk server via SSH
-
Create a Plesk database dump
-
Access Plesk database
-
Run the following commands:
-
Create temporary view
wp
:mysql> create view wp as select distinct module_id from ModuleSettings where name like ‘ext-wp-%’;
-
Update the
ModuleSettings
table:mysql> update ModuleSettings set value='{“notifyAdmin”:false,”notifyResellers”:false,”notifyClients”:false,”notifyCustomEmail”:false,”customEmail”:””,”message”:”<available_updates_text><available_updates_list><installed_updates_text><installed_updates_list><requirements_updates_text><requirements_updates_list>”}’ where module_id=(select module_id from wp);
-
Remove view
wp
:mysql> drop view wp;
-