is er een systeem wat kan zien of iemand een proxy gebruikt?
(en hem dan ook automatisch blokkeert) ik wil het het liefst gewoon als algemeen gebruiken voor mijn hele website maar als het alleen voor phpbb is is het ook goed

thnq

Code: Selecteer alles
Warning: fopen(files/manual_black.txt) [function.fopen]: failed to open stream: Permission denied in public_html/proxydetect/functions.php on line 394
Warning: fwrite(): supplied argument is not a valid stream resource in public_html/proxydetect/functions.php on line 395
Warning: fclose(): supplied argument is not a valid stream resource in public_html/proxydetect/functions.php on line 396
Warning: Cannot modify header information - headers already sent by (output started at public_html/proxydetect/functions.php:394) in public_html/proxydetect/functions.php on line 409
Code: Selecteer alles
$tosave = (empty($_POST['editfile'])) ? "" : $_POST['editfile'];
$tosave = stripslashes($tosave);
if ($tosave != "")
{
$fp = fopen($file,'w');
fwrite($fp,$tosave);
fclose($fp);
}
else
{
$fa = fopen ($file, "w"); // empty file
fputs($fa, '');
}
if ($action == "config")
{
header("location: index.php");
}
else
{
header("location: functions.php?act=intro");
}
Code: Selecteer alles
Your IP-adres is: xx.xx.xx.xx
This IP adres is blocked from this website, probably because it is identified as a proxy.
Contact the administrator if you think this IP-adress should not be blocked.