Quote:
Originally Posted by S@NL - BlackBik
Well, this doen't seem to be a problem with the vB Statistics but with your own host or configuration.
What you could do is open the database with e.g. MySQL Front and edit the field, in wich the name of your domain should be, manualy. That should do the trick.
|
yeah i contacted the tech support from my host they didn't answered yet but i think the same there is something with there config ...
updated
i found a solution .for people who get this MySQL error
Code:
Database error in vBulletin 3.0.7:
Invalid SQL:
SHOW TABLE STATUS
FROM
LIKE 'testvb_pm'
mysql error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIKE 'testvb_pm'' at line 3
mysql error number: 1064
Date: Monday 21st of February 2005 10:25:35 PM
Script:**************
Referer:
Username: **********
IP Address:**********
open op "statistick/sides/forum.php"
PHP Code:
// find this code
$pm_speicher_groesse = $DB_site->query("
SHOW TABLE STATUS
FROM $dbname
LIKE '" . TABLE_PREFIX . "pm'
");
//replace that with
$pm_speicher_groesse = $DB_site->query("
SHOW TABLE STATUS
LIKE '" . TABLE_PREFIX . "pm'
");
you are done don't ask me why but for some reason MySQL is crashing if you add $dbname i don't know why
any cheers working now