Phpservermon: Database record update failure

Created on 20 Nov 2019  路  3Comments  路  Source: phpservermon/phpservermon

When I run update process, everything passes, website is detected, but no database update is performed. Therefore - system next time thinks the website was down, and sends me email again

Most helpful comment

A huge thanks for this fix guys !

The change on the last_output field VARCHAR -> TEXT fixes the following error :

Warning: SQL error: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'last_output' at row 1 in /var/www/alerte/src/psm/Service/Database.php on line 544

Without your work, when this warning is triggered, website status does not refresh correctly.

In my case, the website state was offline whereas the CRONJOB returns a 200 http return code.

Hope I will be delivered soon in a production ready release.

Have a nice day guys!

All 3 comments

This is due to the DB field last_output, which is specified as varchar(255). When the output is longer (which is pretty much usual), SQL query fails.

I strongly believe that older MySQL servers just truncated input to 255 chars and just raised a warning. Server 10.3.17-MariaDB-0 emits error instead.

Solved by #812

A huge thanks for this fix guys !

The change on the last_output field VARCHAR -> TEXT fixes the following error :

Warning: SQL error: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'last_output' at row 1 in /var/www/alerte/src/psm/Service/Database.php on line 544

Without your work, when this warning is triggered, website status does not refresh correctly.

In my case, the website state was offline whereas the CRONJOB returns a 200 http return code.

Hope I will be delivered soon in a production ready release.

Have a nice day guys!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

gotfredsen picture gotfredsen  路  4Comments

amelhorn picture amelhorn  路  8Comments

joubertredrat picture joubertredrat  路  8Comments

kristianrl picture kristianrl  路  9Comments

yalgva picture yalgva  路  7Comments