Zusätzlich zu BlackPixels Frage: Was steht in der linkcheck.php?
<?PHP
include "../include/config.inc.php";
$home_url= $_GET['home_url'];
$linklook="$seitenurl";
$found_the_link="";
if (! file_exists($home_url))
{
$file = fopen($home_url,'r') or die ("<font color=\"red\" size=\"2\" face=\"Tahoma, Verdana, Arial\"><b>FEHLER: URL nicht gefunden!!!</font>");
;
$i = 0;
do {
$i++;
$page_line[$i] = trim(fgets($file,4096));
} while (!feof($file));
fclose($file);
for($x = 1; $x <= $i; $x++) {
$test_line = ereg_replace($linklook,"test",$page_line[$x]);
if ($test_line != $page_line[$x]) {
$found_the_link = "ja";
}
}
if ($found_the_link == "ja")
{
echo "<font color=\"green\" size=\"2\" face=\"Tahoma, Verdana, Arial\"><b>URL OK! - Backlink gefunden!</b></font>";
}
if ($found_the_link != "ja")
{
echo "<font color=\"green\" size=\"2\" face=\"Tahoma, Verdana, Arial\"><b>URL OK!</b></font> - <font color=\"red\" size=\"2\" face=\"Tahoma, Verdana, Arial\"><b>Kein Backlink vorhanden!</b></font>";
}
}
?>
We use essential cookies to make this site work, and optional cookies to enhance your experience.