mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 21:19:21 +03:00
Force PHP opcache_invalidate due to upgrade error reports "Missing version directory"
This commit is contained in:
parent
b9412ac09b
commit
bef1a378ca
2 changed files with 7 additions and 0 deletions
|
|
@ -13,5 +13,9 @@ if (file_exists(APP_INDEX_ROOT_PATH.'snappymail/v/'.APP_VERSION.'/include.php'))
|
|||
else
|
||||
{
|
||||
echo '[105] Missing snappymail/v/'.APP_VERSION.'/include.php';
|
||||
// opcache_reset is a terrible solution
|
||||
// is_callable('opcache_reset') && opcache_reset();
|
||||
// opcache_invalidate will not do everything
|
||||
is_callable('opcache_invalidate') && opcache_invalidate(__FILE__, true);
|
||||
exit(105);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue