RazorBlade
Retired Snek
I was wondering where the link to account management is when clicking the login button on gesior:
When using a redirect script:
The login button redirects to the latest news instead of account management, but the account management button in the Account menu still works properly. How can I fix this? Where is the login button's link set? I looked in several files for it but found nothing o.o
When using a redirect script:
PHP:
<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
if ($uri == "http://avenged-eternity.no-ip.org") {
header('Location: '.$uri.'/Avenged/');
}
else if ($uri == "http://alscara.no-ip.net") {
header('Location: '.$uri.'/Alscara/');
}
else {
//header('Location: '.$uri.'/Avenged/');
echo "If your trying to connect with localhost then specify a path.";
}
exit;
?>