This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
AbetoArmarios_Web/Source/udrive/home/admin/www/includes/secure.php
2007-06-18 10:53:18 +00:00

35 lines
805 B
PHP

<?
/*
####################################################
# Name: The Uniform Server Security 0.5
# Developed By: The Uniform Server Development Team
# Modified Last By: Olajide Olaolorun (empirex)
# Web: http://www.uniformserver.com
####################################################
*/
if ($unisecure=="1") {
if ( !($usip == "127.0.0.1")) {
#if ( !($usip == "127.0.0.1") || !($hname == "localhost")) { //Causes error on some machines
echo "
<div id=\"main\">
<h2>&#187; ".$US['secure1-head']."</h2>
<h3>".$US['secure1-sub']."</h3>
<p>
".$US['secure1-text-0']." '<b>".$usip."</b>'.
<br />
".$US['secure1-text-1']." '<b>".$hname."</b>'.
<br />
<br />
".$US['secure1-text-2']."
<p>
</div>";
require "footer.php";
exit;
}
}
?>