Yep – I saw them return shortly thereafter. It did fix some things, but then there must be a cronjob that comes in and starts rewriting caches and whatnot. One thing I’ve been meaning to try is to turn of WP Cron by adding the following line to the wp-config.php file:
define('DISABLE_WP_CRON', true);
If you need cron still, I know WPE has a process where they’ll hit the wp cron url locally. I can’t remember if that happens in an authenticated fashion though… so again, no promises.
In the 11th hour last night, I finally disabled ai1ec to get the site up to php7.2 =\
This does boil down to write permissions from unauthenticated requests though; Can’t write executable files to disk when the requests aren’t logged in. This is a bit of a pickle considering how ai1ec works.
Feels like this could be handled a little more gracefully by checking first if is_writable
and if is_readable
when caching to prevent the fatals beforehand. I’d dig deeper, but I got deadlines! D=
-
This reply was modified 5 years, 9 months ago by Rohjay.