Server: 93.91.240.156:37260Dobrý podvečer,
dnes som sa pokúšal dať na svoj web BanList. Používam plugin FigAdmin a všetko som robil podľa
tohto návodu, ale aj tak mi to nejde

Email s údajmi od MySQL.
Config FigAdmin-vrchná časť,message sem nemalo zmysel dávať.
mysql: true
mysql-database: jdbc:mysql://localhost:3306/gs_37260_1
mysql-user: gs_37260_1
mysql-password: *****
mysql-table: banlist
auto-complete: true
Ten php script na webe
<?
header('Content-Type: text/html; charset=utf-8');
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Banlist</title>
</head>
<body>
<?php
// change these things
$server = "zulu.fakaheda.eu";
$dbuser = "gs_37260_1";
$dbpass = "*****";
$dbname = "gs_37260_1";
mysql_connect($server, $dbuser, $dbpass);
mysql_select_db($dbname);
$result = mysql_query("SELECT * FROM banlist ORDER BY time DESC");
echo "<table width=70% border=1 cellpadding=5 cellspacing=0>";
echo "<tr style=\"font-weight:bold\">
<td>Hráč</td>
<td>Důvod</td>
<td>Kdo zabanoval</td>
<td>Čas zabanování</td>
<td>Čas unbanu</td>
</tr>";
while($row = mysql_fetch_assoc($result)){
if($col == "#eeeeee"){
$col = "#ffffff";
}else{
$col = "#eeeeee";
}
echo "<tr bgcolor=$col>";
echo "<td>".$row['name']."</td>";
echo "<td>".$row['reason']."</td>";
echo "<td>".$row['admin']."</td>";
echo "<td>".date("d M, Y g:ia",$row['time'])."</td>";
if($row['temptime'] == "0"){
echo "<td>∞</td>";
}else{
echo "<td>".date("d M, Y g:ia",$row['temptime'])."</td>";
}
echo "</tr>";
}
echo"</table>"
?>
Banová databáze provozovaná
<a href="http://dev.bukkit.org/server-mods/figadmin/">FigAdmin</a>.
</body></html>
Error, ktorú mi vypisuje na webe
Table 'gs_37260_1.fusion6UKA8_users' doesn't existTable 'gs_37260_1.fusion6UKA8_custom_pages' doesn't existTable 'gs_37260_1.fusion6UKA8_errors' doesn't existTable 'gs_37260_1.fusion6UKA8_errors' doesn't exist
Table 'gs_37260_1.fusion6UKA8_user_groups' doesn't existTable 'gs_37260_1.fusion6UKA8_errors' doesn't existTable 'gs_37260_1.fusion6UKA8_errors' doesn't exist
Table 'gs_37260_1.fusion6UKA8_users' doesn't existTable 'gs_37260_1.fusion6UKA8_errors' doesn't existTable 'gs_37260_1.fusion6UKA8_errors' doesn't exist
Nevie niekto skúsený čo stým mám robiť aby to šlo ? Samozrejme karma +
