Verfasst: 07.11.2003 13:35
ich habs sogar doppelt.
Einmal phpbb_2notes
Und noch phpbb_notes
Einmal phpbb_2notes
Und noch phpbb_notes
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Meine db meldet:# ----- QUERY DATABASE ----------------------------------------
# // Change the table-prefix 'phpbb_' if your tables haves another one!!!
#
CREATE TABLE phpbb_notes (
post_id mediumint(8) unsigned NOT NULL auto_increment,
poster_id mediumint(8) NOT NULL default '0',
post_subject varchar(60) default NULL,
post_text text,
post_time int(11) NOT NULL default '0',
PRIMARY KEY (post_id),
KEY poster_id (poster_id),
KEY post_time (post_time)
Was muss ich da eintragen?Fehler
SQL-Befehl :
CREATE TABLE `phpbb_notes` (
`post_id` MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT,
`poster_id` MEDIUMINT DEFAULT '0' NOT NULL ,
`post_subject` VARCHAR,
`post_text` TEXT NOT NULL ,
`post_time` INT DEFAULT '0' NOT NULL ,
PRIMARY KEY ( `post_id` )
) TYPE = MYISAM
MySQL meldet:
You have an error in your SQL syntax near ' `post_text` TEXT NOT NULL, `post_time` INT DEFAULT '0' NOT NULL, PRIMARY KEY (`' at line 1
@oxpus:oxpus hat geschrieben:Jo Testboard bei mir:
http://www.oxpus.de
Und Testaccount:
User: caro
Passwort: caro
Fleissiges ausprobieren...
Der Mod von Smartor macht das rote meines Erachtens nicht oder gibt es da einen neuen ?Seite in 0.6921 Sekunden generiert ( SQL: 0.2328s = 34% | PHP: 0.4593s = 66% | 74 Queries )
Server hat 1 Seite(n) in den letzten 5 Minuten erstellt «» 9891 Aufrufe bislang «» Debug an «» GZIP aktiviert
Du musst auch noch die Zeilen.EGGY:. hat geschrieben:Hi,
ich bin dumm und verstehe die letzten beiden Zeilen nicht:
Meine db meldet:# ----- QUERY DATABASE ----------------------------------------
# // Change the table-prefix 'phpbb_' if your tables haves another one!!!
#
CREATE TABLE phpbb_notes (
post_id mediumint(8) unsigned NOT NULL auto_increment,
poster_id mediumint(8) NOT NULL default '0',
post_subject varchar(60) default NULL,
post_text text,
post_time int(11) NOT NULL default '0',
PRIMARY KEY (post_id),
KEY poster_id (poster_id),
KEY post_time (post_time)
Was muss ich da eintragen?Fehler
SQL-Befehl :
CREATE TABLE `phpbb_notes` (
`post_id` MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT,
`poster_id` MEDIUMINT DEFAULT '0' NOT NULL ,
`post_subject` VARCHAR,
`post_text` TEXT NOT NULL ,
`post_time` INT DEFAULT '0' NOT NULL ,
PRIMARY KEY ( `post_id` )
) TYPE = MYISAM
MySQL meldet:
You have an error in your SQL syntax near ' `post_text` TEXT NOT NULL, `post_time` INT DEFAULT '0' NOT NULL, PRIMARY KEY (`' at line 1
edit: anscheinend verstehe ich alle Zeilen nicht. Dumme sollten wohl bei der PN bleiben.
Code: Alles auswählen
PRIMARY KEY ( `post_id` )
) TYPE = MYISAM
Code: Alles auswählen
INSERT INTO phpbb_config ( config_name , config_value )
VALUES ('notes', '20');