leider habe ich für ein Forum keinen phpmyadmin-Zugriff.
Für den Mod-Einbau benötige ich Folgendes:
Code: Alles auswählen
ALTER TABLE forums ADD forum_style smallint(5);
Wie erstelle ich so eine Datei?
Code: Alles auswählen
ALTER TABLE forums ADD forum_style smallint(5);
Code: Alles auswählen
<?
// connect to phpbb
include('./config.php');
$cnx = mysql_connect($dbhost, $dbuser, $dbpasswd)
or die("Unable to connect to database server.");
mysql_select_db($dbname, $cnx)
or die("Unable to select database.");
$sql1 = "ALTER TABLE ".$table_prefix."forums ADD forum_style smallint(5)";
$result = mysql_query($sql1);
if(!$result)
echo "Install failed<BR><BR>";
if (mysql_error()) { echo "Error Report: <B>".mysql_error()."</B><BR><BR>"; }
else {
echo "Install complete, new table added.<BR><BR><BR>Please remember to delete this file ASAP.";
}
exit;
?>