Hi Chris,
The log shows that on your server, PHP is allowed to run for approximately 50 seconds, before being killed off. The problem is that the postmeta table on your site is larger than PHP can process in that time. Consequently, there are 3 possible resolutions:
1) You can reduce the size of your postmeta table. To do this, you’d need to inspect what’s in it that may be consuming so many rows (you have nearly half a million entries, which is huge). This could be unprocessed comments, or spam comments – but that’s just one possibility; there are many.
2) Or, you could ask the server admin to allow PHP to run for longer.
3) Or, you could ask the server admin where the “mysqldump” binary is found on your webserver, and add a line in your wp-config.php identifying the location:
define(‘UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE’, ‘/path/to/mysqldump’);
mysqldump can dump out MySQL data significantly faster than PHP – but is not found on your server in any of the standard locations.
David