mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 16:32:45 +00:00
13 lines
362 B
PHP
13 lines
362 B
PHP
<?php
|
|
|
|
function redirect($url, $showtext = true) {
|
|
if ($showtext === true) {
|
|
echo "<a href=\"$url\">Redirecting...</a>";
|
|
}
|
|
die("<script data-cfasync=\"false\" type=\"text/javascript\">document.location=\"$url\";</script>");
|
|
}
|
|
|
|
if (!extension_loaded("pdo_mysql") || !extension_loaded("intl")) {
|
|
redirect("error/missing-extensions.php");
|
|
}
|