Hallo Ravel,
erstell Dir mal eine php-file mit folgendem Inhalt und ruf sie auf deinem server auf. (
http://www.fairtraffic.de/portal/)
Schau mal ob da ne SQL-Fehlermeldung kommt.
<?php
include_once ("config.php");
$db=@mysql_connect($dbhost, $dbuname, $dbpass);
mysql_select_db($dbname);
$myerror = mysql_error();
if ($myerror){
echo "SQL-Error: $myerror";
}
else{
mysql_query("select * from ".$prefix."_authors");
$myerror = mysql_error();
if ($myerror){
echo "SQL-Error: $myerror";
}
else{
echo "Tabelle ".$prefix."_authors = ok ";
}
}
?>