error while creating new article content: Unknown column 'ac

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
Gagamello
Posts: 59
Joined: Fri 1. Sep 2006, 20:07
Location: Arnsberg

error while creating new article content: Unknown column 'ac

Post by Gagamello »

Hallo, ich versuche seit einigen Stunden einige Bilder in mein phpwcms einzubinden. Aber egal was ich mache, ich bekomme immer obigen Alert wenn ich auf Speichern oder Sichern gehe:

Code: Select all

error while creating new article content: Unknown column 'acontent_created' in 'field list'
Das ist aber erst, seit ich von 1.2.8 auf 1.3.3 aktualisiert habe.

Weiß jemand Abhilfe?

mfg
Achim
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hallo,

hier wirst du fündig: http://www.phpwcms.de/forum/viewtopic.php?p=85778#85778

Gruß Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
Gagamello
Posts: 59
Joined: Fri 1. Sep 2006, 20:07
Location: Arnsberg

Post by Gagamello »

Hallo Knut,

danke für den Tip. Doch habe ich versucht die angegebenen Schritte nachzuvollziehen:
SQL DB aufgemacht mit myadmin, klick auf Datenbanken, meine DB ausgewählt, dann Olivers Code

Code: Select all

ALTER TABLE `phpwcms_articlecontent` ADD `acontent_created` TIMESTAMP NOT NULL AFTER `acontent_uid` ;
eingegeben und auf ok..leider kam als Antwort:

Code: Select all

MySQL meldet: Dokumentation
#1293 - Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause 
leider erschöpfen sich da meine Kenntnisse :-( Gibt es eine Lösung die auch ein mysql-Laie anwenden kann?
Gagamello
Posts: 59
Joined: Fri 1. Sep 2006, 20:07
Location: Arnsberg

Post by Gagamello »

Ich habs.. habe doch noch was gefunden:

Code: Select all

ALTER TABLE `phpwcms_articlecontent` ADD `acontent_created` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `acontent_uid` ;
Danach ging es. Danke für die Hilfe :-)
somtho
Posts: 14
Joined: Fri 7. May 2010, 22:38

Re: error while creating new article content: Unknown column 'ac

Post by somtho »

Hallo ...
bei mir war das selbe Problem...
ALTER TABLE `phpwcms_articlecontent` ADD `acontent_created` TIMESTAMP NOT NULL AFTER `acontent_uid` ;

kam dann die Fehlermeldung

#1146 - Table 'DB700860.phpwcms_articlecontent' doesn't exist

Wie hast Du es dann doch noch hinbekommen ?


WER KANN HELFEN ????
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: error while creating new article content: Unknown column 'ac

Post by flip-flop »

Arbeitest du mit einem Prepend?

findest du z.B. die Tabelle "phpwcms_article" in phpMyAdmin oder sieht das bei dir etwas so aus "meinprepend_phpwcms_article"?

Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
somtho
Posts: 14
Joined: Fri 7. May 2010, 22:38

Re: error while creating new article content: Unknown column 'ac

Post by somtho »

Servus Knut,

prepend...ne....

ja, sehe die phpwcms_article.......Seite liegt auf Strato-Server...bin über Strato auf die Datenbank MySql......

Gruß

Thorsten
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: error while creating new article content: Unknown column 'ac

Post by flip-flop »

Ich frage mal ganz vorsichtig, welche Version hast du verwendet und verwendest du jetzt?

Die Tabelle "phpwcms_articlecontent" existiert schon seit Urzeiten.
Deshalb ist mir nicht klar, weshalb die bei dir nicht vorhanden sein soll.

Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: error while creating new article content: Unknown column 'ac

Post by juergen »

Na 11 Mails mit Thorsten :mrgreen: vermute ich dass es das

Code: Select all

ALTER TABLE `phpwcms_articlecontent` ADD `acontent_created` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `acontent_uid` ;
ist, wenn die inzwischen fehlende Tabelle wieder auf dem Weg zur 1.3.3 ist ...

Wäre gut jetzt noch so einen Strato Fachmann wie zB Oliver zu kennen ;)
somtho
Posts: 14
Joined: Fri 7. May 2010, 22:38

Re: error while creating new article content: Unknown column 'ac

Post by somtho »

Hallo Jürgen,
Hallo Knut,


jetzt läufts...... !!!!

Lösung:
Habe mich an dem

http://forum.phpwcms.org/viewtopic.php?p=85778#85778

orientiert......da ging es einfach auch nicht. Kam dann auf die Idee mal die Datei

//setup/update_sql/15__1.2.7-DEV_to_1.2.9...... aus der Version 1.3

gegen die Version aus 1.4.2 zu tauschen....danach einfach das update wieder drüberlassen (60 Sek Arbeit :wink: )

Voila !!!....Ganz einfach, wenn man es weiß und nicht wie ich ein ganzes WE verschwendet !!!

An EUCH BEIDE nochmals besten Dank !!!

Gruß

Thorsten

P.S: War schon idiotisch ne alte Version für den Anfang zu probieren, wenn die neue schon da ist.....naja....auf JEDENFALL kann ich das PHPWCMS jetzt wohl in bisschen besser :-)....Wünsch EUCH WAS !!!
Post Reply