2020-03-11 21:17:52 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!defined('APP_VERSION'))
|
|
|
|
{
|
|
|
|
define('APP_VERSION', '0.0.0');
|
2021-12-23 23:04:40 +08:00
|
|
|
define('APP_INDEX_ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
|
2020-03-11 21:17:52 +08:00
|
|
|
}
|
|
|
|
|
2022-08-31 22:23:01 +08:00
|
|
|
if (file_exists(APP_INDEX_ROOT_PATH.'snappymail/v/'.APP_VERSION.'/include.php'))
|
2020-03-11 21:17:52 +08:00
|
|
|
{
|
2022-08-31 22:23:01 +08:00
|
|
|
include APP_INDEX_ROOT_PATH.'snappymail/v/'.APP_VERSION.'/include.php';
|
2020-03-11 21:17:52 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-10-27 18:37:03 +08:00
|
|
|
echo '[105] Missing snappymail/v/'.APP_VERSION.'/include.php';
|
2022-11-01 17:14:33 +08:00
|
|
|
// 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);
|
2020-03-11 21:17:52 +08:00
|
|
|
exit(105);
|
|
|
|
}
|