• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Issue Cannot start event handler: Could not decode JSON, syntax error - malformed JSON.

W.c

New Pleskian
Hello,

in the current Plesk Obsidian release 18.0.36 I'm getting an error message regarding not started event handlers/malformed JSON when updating a domain via CLI.

For example:
Code:
# plesk bin domain --update domain.tld -perl false
SUCCESS: Update of domain 'domain.tld' completed.
[2021-06-22 09:54:41.465] 84512:60d197410cb9f ERR [panel] Cannot start event handler: Could not decode JSON, syntax error - malformed JSON.

There is an event handler set up for the "Physical hosting updated" event that seems to cause this issue:
Code:
# plesk bin event_handler --list
   Id               1
   Name             Physical hosting updated
   Priority         50
   User             root
   Command          /usr/local/bin/phys_hosting_update_handler.sh

The phys_hosting_update_handler.sh script simply writes the current date into a file, so there is not much magick going on here:
Code:
#!/bin/bash
/usr/bin/date > /var/www/vhosts/system/${NEW_DOMAIN_NAME}/conf/last_update.txt

Despite the error message the handler script still is executed when updating a domain via CLI (as you can easily see in this case by checking the date in the last_update.txt file). So it doesn't make much sense why this message appears at all.

Any idea how I can get rid of these "Cannot start event handler" messages?
 
Hello, have same issue with last MU...

[2021-06-23 09:24:40.716] 449:60d2e1b82af17 ERR [panel] Cannot start event handler: Could not decode JSON, syntax error - malformed JSON.

Please plesk team and @IgorG , need an solution.
 
Have you tried to put into Event Command not bash script but target command '/usr/bin/date > /var/www/vhosts/system/${NEW_DOMAIN_NAME}/conf/last_update.txt'?
 
Have you tried to put into Event Command not bash script but target command '/usr/bin/date > /var/www/vhosts/system/${NEW_DOMAIN_NAME}/conf/last_update.txt'?
@IgorG , we have not try nothing, but these command works without problem since various years and now have an failure since the last MU.
 
Back
Top