Quote:
Originally Posted by Lionel
I just got an email about the database. Notice that the referrer is yahoo, and the error is from homepage which was up (am sure of that) at the time it happened.
What should I make out of this database error?
|
Search in your /statistic/statistic_searchengines.php
(Line round 221)
found:
PHP Code:
$keyword_found = ereg_replace("'","",$keyword_found); //Abfangen eines Fehlers der auftreten kann wenn ' Keyword vorkommt
replace with:
PHP Code:
$keyword_found = ereg_replace("'","",$keyword_found); //Abfangen eines Fehlers der auftreten kann wenn ' Keyword vorkommt
$keyword_found = eregi_replace("\"", "",$keyword_found); //Abfangen eines Fehlers der auftreten kann wenn \ Keyword vorkommt
PcFreak