Quote:
Originally Posted by Spinball
Morning fellows 
Another database error:
|
Ups...
One user had searched
vincent tac\ in google.
Why someone use this sign \ for search something?

At the moment, i dont know really, how can i fix this.
This code does not function
PHP Code:
$keyword_found = ereg_replace("\","",$keyword_found);
but the php manual says this code is the same
PHP Code:
$keyword_found = ereg_replace("\\","",$keyword_found);
Well, try this
Find in statistic_searchengines.php
PHP Code:
$keyword_found = ereg_replace("'","",$keyword_found); //Abfangen eines Fehlers der auftreten kann wenn ' Keyword vorkommt
replace ist with
PHP Code:
$keyword_found = ereg_replace("'","",$keyword_found); //Abfangen eines Fehlers der auftreten kann wenn ' Keyword vorkommt
$keyword_found = ereg_replace("\\","",$keyword_found); //Abfangen eines Fehlers der auftreten kann wenn \ Keyword vorkommt
Possibly, this will fix this error.
@Sir_Yaro
I see this, when i call the side "10 most viewed threads" in your statistic. (see the image)
Quote:
Originally Posted by KW802
Huh? This hack works fine with vBadvanced CMPS.
|
Yep, for the most statistic users.
But i know that two users have problems if they use vBadvanced and the statistic together.
PcFreak