You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we are getting a random failure from PHP 7:
exception filemtime(): stat failed for modules/ddd_installer_test/ddd_installer_test.info system.module:2735
This is likely caused by the PHP stat cache. When installing a module from a remote source, PHP doesn't know that the file exists on disk. It caches it not existing, then when filemtime() is called on it, it fails because the cache contains that file as non-existent.
To fix this, we should clear the file stat cache after installing a remote module in the Installer module.
Right now we are getting a random failure from PHP 7:
This is likely caused by the PHP stat cache. When installing a module from a remote source, PHP doesn't know that the file exists on disk. It caches it not existing, then when
filemtime()
is called on it, it fails because the cache contains that file as non-existent.To fix this, we should clear the file stat cache after installing a remote module in the Installer module.
PR backdrop/backdrop#1595
The text was updated successfully, but these errors were encountered: