Redirect to install page when configuration doesn't exist.

这个提交包含在:
Tomasz 2022-01-18 23:13:52 +01:00
父节点 64f7e7cc00
当前提交 ccabdeef2d

查看文件

@ -256,8 +256,9 @@ if ( ! function_exists('get_config'))
}
elseif ( ! $found)
{
set_status_header(503);
echo 'The configuration file does not exist.';
// set_status_header(301);
header('Location: install/');
// echo 'The configuration file does not exist.';
exit(3); // EXIT_CONFIG
}