[Beta] Partner Mod
Forumsregeln
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
- djchrisnet
- Mitglied
- Beiträge: 1275
- Registriert: 29.06.2007 15:52
- Wohnort: Elmshorn
- Kontaktdaten:
- DreamPromise
- Mitglied
- Beiträge: 3793
- Registriert: 27.01.2004 17:56
Moin moin
also ich hab mich mal rangertaut das Teil zu installieren ...
Leider kann ich die Tabelle nicht erstellen.
Was muß ich denn rauslöschen aus der SQL damit ich die Tabelle erstellen kann?
DP
also ich hab mich mal rangertaut das Teil zu installieren ...
Leider kann ich die Tabelle nicht erstellen.
- Fehler
SQL-Befehl:
CREATE TABLE IF NOT EXISTS `phpbb_partners` (
`id` mediumint( 8 ) NOT NULL AUTO_INCREMENT ,
`title` mediumtext COLLATE utf8_bin NOT NULL ,
`url` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`image_url` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`counter` mediumint( 9 ) NOT NULL ,
`position` tinyint( 3 ) NOT NULL ,
`text` mediumtext CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`bbcode_bitfield` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`bbcode_uid` varchar( 8 ) COLLATE utf8_bin NOT NULL ,
`enable_bbcode` tinyint( 1 ) NOT NULL ,
`enable_smilies` tinyint( 1 ) NOT NULL ,
`enable_magic_url` tinyint( 1 ) NOT NULL ,
`enable_count` tinyint( 1 ) NOT NULL ,
`aktiv` tinyint( 1 ) NOT NULL default '0',
PRIMARY KEY ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = utf8 COLLATE = utf8_bin AUTO_INCREMENT =1
MySQL meldet: Dokumentation
#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_bin NOT NULL,
`url` varchar(255) collate utf8_b
Was muß ich denn rauslöschen aus der SQL damit ich die Tabelle erstellen kann?
DP
- djchrisnet
- Mitglied
- Beiträge: 1275
- Registriert: 29.06.2007 15:52
- Wohnort: Elmshorn
- Kontaktdaten:
- djchrisnet
- Mitglied
- Beiträge: 1275
- Registriert: 29.06.2007 15:52
- Wohnort: Elmshorn
- Kontaktdaten:
Probier mal diesen Code und führe den 2.ten danach zusätzlich aus!
Code: Alles auswählen
CREATE TABLE IF NOT EXISTS `phpbb_partners` (
`id` mediumint( 8 ) NOT NULL AUTO_INCREMENT ,
`title` mediumtext NOT NULL ,
`url` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`image_url` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`counter` mediumint( 9 ) NOT NULL ,
`position` tinyint( 3 ) NOT NULL ,
`text` mediumtext CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`bbcode_bitfield` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`bbcode_uid` varchar( 8 ) COLLATE utf8_bin NOT NULL ,
`enable_bbcode` tinyint( 1 ) NOT NULL ,
`enable_smilies` tinyint( 1 ) NOT NULL ,
`enable_magic_url` tinyint( 1 ) NOT NULL ,
`enable_count` tinyint( 1 ) NOT NULL ,
`aktiv` tinyint( 1 ) NOT NULL default '0',
PRIMARY KEY ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = utf8 COLLATE = utf8_bin AUTO_INCREMENT =1
Code: Alles auswählen
ALTER TABLE `phpbb_partners` CHANGE `title` `title` MEDIUMTEXT CHARACTER SET utf8 COLLATE utf8_bin NOT NULL
- DreamPromise
- Mitglied
- Beiträge: 3793
- Registriert: 27.01.2004 17:56
Moin moin
wenn ich das ausführe kommt:
SQL-Befehl:
wenn ich das ausführe kommt:
SQL-Befehl:
Code: Alles auswählen
CREATE TABLE IF NOT EXISTS `phpbb_partners` (
`id` mediumint( 8 ) NOT NULL AUTO_INCREMENT ,
`title` mediumtext NOT NULL ,
`url` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`image_url` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`counter` mediumint( 9 ) NOT NULL ,
`position` tinyint( 3 ) NOT NULL ,
`text` mediumtext CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`bbcode_bitfield` varchar( 255 ) COLLATE utf8_bin NOT NULL ,
`bbcode_uid` varchar( 8 ) COLLATE utf8_bin NOT NULL ,
`enable_bbcode` tinyint( 1 ) NOT NULL ,
`enable_smilies` tinyint( 1 ) NOT NULL ,
`enable_magic_url` tinyint( 1 ) NOT NULL ,
`enable_count` tinyint( 1 ) NOT NULL ,
`aktiv` tinyint( 1 ) NOT NULL default '0',
PRIMARY KEY ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = utf8 COLLATE = utf8_bin AUTO_INCREMENT =1
Code: Alles auswählen
MySQL meldet: Dokumentation
#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_bin NOT NULL ,
`image_url` varchar( 255 ) COLLATE
Hi, also bei mir geht der Mod jetzt, habe einfach alles so gemacht wie es hier drin steht: http://www.phpbb.de/viewtopic.php?t=172 ... m&start=10
teste mal funktioniert bei dir bestimmt auch
teste mal funktioniert bei dir bestimmt auch
- DreamPromise
- Mitglied
- Beiträge: 3793
- Registriert: 27.01.2004 17:56
Moin moin
also so sieht die SQL nun aus:
leider kommt nun:
Ich hab mich deshalb entschlossen diesen MOD nicht zu installieren.
Hab ja keine Lust nachher irgendwas wieder tagelang zu reparieren ...
Danke für die Ausdauer.
also so sieht die SQL nun aus:
Code: Alles auswählen
CREATE TABLE IF NOT EXISTS `phpbb_partners` (
`id` mediumint( 8 ) NOT NULL AUTO_INCREMENT ,
`title` mediumtext NOT NULL ,
`url` varchar( 255 ) NOT NULL ,
`image_url` varchar( 255 ) NOT NULL ,
`counter` mediumint( 9 ) NOT NULL ,
`position` tinyint( 3 ) NOT NULL ,
`text` mediumtext NOT NULL ,
`bbcode_bitfield` varchar( 255 ) NOT NULL ,
`bbcode_uid` varchar( 8 ) NOT NULL ,
`enable_bbcode` tinyint( 1 ) NOT NULL ,
`enable_smilies` tinyint( 1 ) NOT NULL ,
`enable_magic_url` tinyint( 1 ) NOT NULL ,
`enable_count` tinyint( 1 ) NOT NULL ,
`aktiv` tinyint( 1 ) NOT NULL default '0',
PRIMARY KEY ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = utf8 COLLATE = utf8_bin AUTO_INCREMENT =1
Code: Alles auswählen
#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 'REATE TABLE IF NOT EXISTS `phpbb_partners` (
`id` mediumint( 8
Hab ja keine Lust nachher irgendwas wieder tagelang zu reparieren ...


Danke für die Ausdauer.
DreamPromise hat geschrieben:Moin moin
also so sieht die SQL nun aus:
Code: Alles auswählen
CREATE TABLE IF NOT EXISTS `phpbb_partners` ( `id` mediumint( 8 ) NOT NULL AUTO_INCREMENT , `title` mediumtext NOT NULL , `url` varchar( 255 ) NOT NULL , `image_url` varchar( 255 ) NOT NULL , `counter` mediumint( 9 ) NOT NULL , `position` tinyint( 3 ) NOT NULL , `text` mediumtext NOT NULL , `bbcode_bitfield` varchar( 255 ) NOT NULL , `bbcode_uid` varchar( 8 ) NOT NULL , `enable_bbcode` tinyint( 1 ) NOT NULL , `enable_smilies` tinyint( 1 ) NOT NULL , `enable_magic_url` tinyint( 1 ) NOT NULL , `enable_count` tinyint( 1 ) NOT NULL , `aktiv` tinyint( 1 ) NOT NULL default '0', PRIMARY KEY ( `id` ) )[/quote] [color=red]ENGINE = MYISAM DEFAULT CHARSET = utf8 COLLATE = utf8_bin AUTO_INCREMENT =1[/color] das Rot markierte musste dabei auch weglassen, so ging es bei mir aufjedenfall