Brauche Dringend Hilfe !

Begonnen von ctsolutions, 09 Juni 2002, 18:51:31

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

ctsolutions

Hallo,

ich möchte eine "Redakteur" anlegen mit fast "SuperUser" rechte.

ich kann aber keine anlegen wegen diese fehlermeldung:

error in sql-statement: mysql_query, err-no: 1136
qry: insert into nuke_authors values ('Redakteur', 'SkyWalker', 'http://www.ct-solutions.de', 'webmaster@ct-solutions.de', 'ae254d63f2381cc183c11594873793e0', '0', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '')
description: Column count doesn't match value count at row 1


bitte um hilfe !!!

Danke im Vorauss und
Gruß,

CtSolutions :cry :cry

Andi

Hi ctsolutions,

hast Du in der Tabelle nuke_authors Felder hinzugefügt oder entfernt?

Falls ja, was ich vermute, musst Du die Anfügeabfrage entsprechend anpassen.
schön´s Grüssle, Andi

ctsolutions

ZitatHi ctsolutions,

hast Du in der Tabelle nuke_authors Felder hinzugefügt oder entfernt?

Falls ja, was ich vermute, musst Du die Anfügeabfrage entsprechend anpassen.

Hi,

ich habe überhaubt nix gemach. Es ist mir gar nicht aufgefahlen weil ich alleine Admin bin. Nun das ich eine weiter "redakteur" anlegen möchte, wie gesagt mit erweiterte rechte, kann ich net.

ich wurde gerne mal eben diese
Tabelle nuke_authors neu aufspielen ich habe aber den script nicht.
ich habe noch kein User, also fählt mir eventuell leicht die Tabelle neu schreiben zu lassen

nur die Tabelle nuke_authors script !

Gruß,
CtSolutions

Andi

Hi ctsolutions,

wenn Du nichts verändert hast, so wird sie wohl wirklich defekt sein :)
Bei mir konnte ich die Anfügeabfrage aus der Fehlermeldung problemlos ausführen.
Nachfolgend die Struktur der nuke_users tabelle: #
# Tabellenstruktur für Tabelle `nuke_authors`
#

DROP TABLE IF EXISTS nuke_authors;
CREATE TABLE nuke_authors (
  aid varchar(25) NOT NULL default '',
  name varchar(50) default NULL,
  url varchar(255) NOT NULL default '',
  email varchar(255) NOT NULL default '',
  pwd varchar(40) default NULL,
  counter int(11) NOT NULL default '0',
  radminarticle tinyint(2) NOT NULL default '0',
  radmintopic tinyint(2) NOT NULL default '0',
  radminuser tinyint(2) NOT NULL default '0',
  radminsurvey tinyint(2) NOT NULL default '0',
  radminsection tinyint(2) NOT NULL default '0',
  radminlink tinyint(2) NOT NULL default '0',
  radminephem tinyint(2) NOT NULL default '0',
  radminfaq tinyint(2) NOT NULL default '0',
  radmindownload tinyint(2) NOT NULL default '0',
  radminreviews tinyint(2) NOT NULL default '0',
  radminnewsletter tinyint(2) NOT NULL default '0',
  radminforum tinyint(2) NOT NULL default '0',
  radmincontent tinyint(2) NOT NULL default '0',
  radminency tinyint(2) NOT NULL default '0',
  radminsuper tinyint(2) NOT NULL default '1',
  admlanguage varchar(30) NOT NULL default '',
  PRIMARY KEY  (aid)
) TYPE=MyISAM;
 
schön´s Grüssle, Andi

ctsolutions

Ich danke für das Script.

Habe eingespielt und funnz alles.

was ist vorher passiert weiss Gott.

Also nochmal BIG THX für die schnelle
Hilfe.

Gruß,
CtSolutions

Excalibur100

Hallo CT,

du kannst dir jedes Script zum anlegen von Tabellen aber auch ganz einfach aus der SQL Datei nehmen, die beim VKP dabei war.
Such dir dort die entsprechende Tabelle raus und kopier nur diese, dann gehst in phpmyadmin und installierst sie dort einfach neu.

Kommt bei mir ab und zu auch vor das ich eine Tabelle neu einspiele :)