MyBB.de Forum

Normale Version: Mindestbeiträge
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2 3
Michael schrieb:Das ist der aktuelle Link: http://mods.mybboard.net/view/auto-assign-groups

Danke! Wenn ich dieses Plugin aktivieren möchte, kommt folgende Meldung:

Code:
MySQL error: 1064
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 'COLLATE utf8_general_ci' at line 1
Query: CREATE TABLE `thai_mybb_autogroups` (`id` INT( 5 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,`gid` INT( 5 ) NOT NULL ,`affect` VARCHAR( 1 ) NOT NULL ,`posts` INT( 6 ) NOT NULL) ENGINE = innodb CHARACTER SET utf8 COLLATE utf8_general_ci;

Ich habe MyBB 1.2.13
Versuche mal bitte folgendes: Öffne die Plugindatei und suche:
PHP-Code:
$sql "CREATE TABLE `".TABLE_PREFIX."autogroups` (`id` INT( 5 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,`gid` INT( 5 ) NOT NULL ,`affect` VARCHAR( 1 ) NOT NULL ,`posts` INT( 6 ) NOT NULL) ENGINE = innodb CHARACTER SET utf8 COLLATE utf8_general_ci;"
Ersetzen durch:
PHP-Code:
$sql "CREATE TABLE `".TABLE_PREFIX."autogroups` (`id` INT( 5 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,`gid` INT( 5 ) NOT NULL ,`affect` VARCHAR( 1 ) NOT NULL ,`posts` INT( 6 ) NOT NULL) ENGINE = innodb;"
Michael, ich danke Dir! Bist echt super! :-)
Seiten: 1 2 3