snappymail/index.php

22 lines
593 B
PHP
Raw Normal View History

2020-03-11 21:17:52 +08:00
<?php
if (!defined('APP_VERSION'))
{
define('APP_VERSION', '0.0.0');
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';
// 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);
}