I’m working on a site that installs WordPress using Composer. I’m assuming that it installs the same WordPress 4.3 that you are using.
Our WordPress site wasn’t loading at all either, and it turns out that the error logs showed that PHP processes were running out of memory with a serialization function. On a hunch I looked into the issue further, knowing that the WP-Cron is stored in the options table.
SELECT option_value FROM ei_options WHERE option_name = 'cron';
It turns out that the serialized value in that option was 7.9 MB in size, with a bunch of duplicated values inside of an array value named ‘wp_batch_split_terms’.
I searched online and found this post from just 9 days ago. This fix is slated for release in v4.31.
Here is the change you need to make to fix the cause of the issue. If you make the same changes shown in this link to your WP files, this should resolve the issue for you.