Seite 2 von 2

Verfasst: 05.04.2006 17:28
von Peggy
Hoch lebe hagily :D

@perikles

kopier dir mal die SQL-Befehle hier:
Insert into phpbb_config ('config_name', 'config_value') VALUES ('uploadmod_active', '1');
Insert into phpbb_config ('config_name', 'config_value') VALUES ('uploadmod_uploaddir', 'upload/');
Insert into phpbb_config ('config_name', 'config_value') VALUES ('uploadmod_size', '512000');
Insert into phpbb_config ('config_name', 'config_value') VALUES ('uploadmod_pixel', '700');
Geh in dein phpMyAdmin und den Rest entnimmst du dieser Abbildung:
http://home.arcor.de/immun/Peggy/SQL1.jpg
Wenn deine Tabellen nicht mit "phpbb_" anfangen, musste das vorher noch in den SQL-Befehlen anpassen

Verfasst: 06.04.2006 11:42
von perikles
Sorry aber ich versteh -> Bahnhof.

edit/ achso dank dir peggy, vielen dank :D

Verfasst: 07.04.2006 23:47
von alcazone
habe das gleiche problem wie perikler. wenn ich aber die sql befehle in phpmyadmin hinzufügen will, kommt folgende fehlermeldung zurück:
SQL-Befehl:

INSERT INTO phpbb_config( 'config_name', 'config_value' )
VALUES (
'uploadmod_active', '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 ''config_name', 'config_value') VALUES ('uploadmod_active', '1')' at line 1
hat jemand eine ahnung, wo da der fehler liegt?

gruss
al cazone

Verfasst: 08.04.2006 13:00
von easygo
alcazone hat geschrieben:INSERT INTO phpbb_config( 'config_name', 'config_value' )
Da sind die quotes und spaces falsch gesetzt / wenn schon viele Striche :wink: dann so

Code: Alles auswählen

INSERT INTO `phpbb_config` (`config_name`, `config_value`) VALUES('uploadmod_active','1');