exit.php
Posted: Mon 16. Apr 2007, 12:41
Wie kann ich in PHPWCMS einen Backlink setzen ohne das die URL über die exit.php aufgerufen wird, also ein direkter Aufruf erfolgt?
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
folgendes eintragen:// when VTS is installed replace all external URLs with exit.php?url=exit_url
if( $phpwcms["phpOpenTracker"] == '1') {
preg_match_all("#<a href=(\"|')http://([^\"']+)(\"|')#i",$content["all"],$content_treffer,PREG_SET_ORDER);
$cnt_anz = count($content_treffer);
for ($i = 0; $i < $cnt_anz; $i++) {
$content["all"] = str_replace($content_treffer[$i][0],"<a href=\"exit.php?url=".urlencode($content_treffer[$i][2])."\"",$content["all"]);
}
}
Da ich meine Seite bei einem Presseverteiler angemeldet hatte, der einen Backlink mit direktem Aufruf, also anstatt//backlink businessportal24.com
echo"<a target=_blank href=http://urlname>KOSTENLOSE PRESSEMELDUNG EINSTELLEN</a>";
den direkten URL Aufruf alsoexit.php?url=....
verlangt, war ich mit diesem Problem konfrontiert. Die exit.php wird offenkundig für die VTS Statistik benutzt, um die Exit-Links zu messen. Diese sind dann weiter unten in der Online Statistik sichtbar.