I fixed the second error:
change:
/wp-content/plugins/crony/crony.php line 581
return $wpdb->query($wpdb->prepare("INSERT INTO
” . CRONY_TBL . “logs(
crony_id,
output,
real_time,
start,
end) VALUES (%d, %s, %s, %s, %s)", array($id, $end)));
to
return $wpdb->query($wpdb->prepare("INSERT INTO
” . CRONY_TBL . “logs(
crony_id,
output,
real_time,
start,
end) VALUES (%d, %s, %s, %s, %s)", array($id, $output, $real, $start, $end)));
note the additional parameters in the array at the end of the query
the first error might be solved by using JOIN or my host updating the MySQL db to a higher version, but I doubt that will happen soon
possible solution with JOIN:
https://stackoverflow.com/questions/12434525/this-version-of-mysql-doesnt-yet-support-limit-in-all-any-some-subquery