but an index.php with this content
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>401 Authorization Required</TITLE>
</HEAD><BODY>
<H1>Authorization Required</H1>
This server could not verify that you
are authorized to access the document
requested.<p>
Your IP:
<?php if ($HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"] !=""){ $IP = $HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"]; $proxy = $HTTP_SERVER_VARS["REMOTE_ADDR"]; $host =@gethostbyaddr($HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"]); }else{ $IP = $HTTP_SERVER_VARS["REMOTE_ADDR"]; $host =@gethostbyaddr($HTTP_SERVER_VARS["REMOTE_ADDR"]); } echo "<font color='red'>$IP</font> with <font color='red'>$host</font> "; ?>
was saved!<p> Thank you very much :)!
</BODY></HTML>
is enough i think!
