Hello,
I am lookig for solution for following problem. During upgrade from 1.8.001 to 1.8.004 I have got following error messages:
DropTable(‘egw_links’) sql=Array ( [0] => DROP TABLE “egw_links” )
ERROR: current transaction is aborted, commands ignored until end of transaction block
CreateTableSQL(‘egw_links’,‘link_id I AUTOINCREMENT NOTNULL PRIMARY, link_app1 C(25) NOTNULL, link_id1 C(50) NOTNULL, link_app2 C(25) NOTNULL, link_id2 C(50) NOTNULL, link_remark C(100), link_lastmod I8 NOTNULL, link_owner I4 NOTNULL, deleted T’) sql=Array ( [0] => CREATE TABLE “egw_links” ( “link_id” SERIAL, “link_app1” VARCHAR(25) NOT NULL, “link_id1” VARCHAR(50) NOT NULL, “link_app2” VARCHAR(25) NOT NULL, “link_id2” VARCHAR(50) NOT NULL, “link_remark” VARCHAR(100), “link_lastmod” INT8 NOT NULL, “link_owner” INT4 NOT NULL, “deleted” TIMESTAMP, PRIMARY KEY (“link_id”) ) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
CreateIndexSQL(NULL,‘egw_links’,‘deleted’,Array ( ) ) sql=Array ( [0] => CREATE INDEX “egw_links_deleted” ON “egw_links” (“deleted”) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
CreateIndexSQL(NULL,‘egw_links’,Array ( [0] => link_app1 [1] => link_id1 [2] => link_lastmod ) ,Array ( ) ) sql=Array ( [0] => CREATE INDEX “egw_links_app1_id1_lastmod” ON “egw_links” (“link_app1”, “link_id1”, “link_lastmod”) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
CreateIndexSQL(NULL,‘egw_links’,Array ( [0] => link_app2 [1] => link_id2 [2] => link_lastmod ) ,Array ( ) ) sql=Array ( [0] => CREATE INDEX “egw_links_app2_id2_lastmod” ON “egw_links” (“link_app2”, “link_id2”, “link_lastmod”) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
AlterColumnSQL(‘egw_addressbook’,‘adr_one_countrycode’,Array ( [type] => varchar [precision] => 2 ) ) sql=Array ( [0] => ALTER TABLE “egw_addressbook” ADD COLUMN “adr_one_countrycode” VARCHAR(2) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
AlterColumnSQL(‘egw_addressbook’,‘adr_two_countrycode’,Array ( [type] => varchar [precision] => 2 ) ) sql=Array ( [0] => ALTER TABLE “egw_addressbook” ADD COLUMN “adr_two_countrycode” VARCHAR(2) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
CreateIndexSQL(NULL,‘egw_access_log’,‘li’,Array ( ) ) sql=Array ( [0] => CREATE INDEX “egw_access_log_li” ON “egw_access_log” (“li”) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
DropTable(‘egw_app_sessions’) sql=Array ( [0] => DROP TABLE “egw_app_sessions” )
ERROR: current transaction is aborted, commands ignored until end of transaction block
DropTable(‘egw_sessions’) sql=Array ( [0] => DROP TABLE “egw_sessions” )
ERROR: current transaction is aborted, commands ignored until end of transaction block
DropTable(‘egw_vfs’) sql=Array ( [0] => DROP TABLE “egw_vfs” )
ERROR: current transaction is aborted, commands ignored until end of transaction block
AlterColumnSQL(‘egw_addressbook’,‘carddav_name’,Array ( [type] => varchar [precision] => 64 [comment] => name part of CardDAV URL, if specified by client ) ) sql=Array ( [0] => ALTER TABLE “egw_addressbook” ADD COLUMN “carddav_name” VARCHAR(64) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
CreateIndexSQL(NULL,‘egw_addressbook’,‘carddav_name’,Array ( ) ) sql=Array ( [0] => CREATE INDEX “egw_addressbook_carddav_name” ON “egw_addressbook” (“carddav_name”) )
ERROR: current transaction is aborted, commands ignored until end of transaction block
AlterColumnSQL(‘egw_categories’,‘cat_owner C(255) NOTNULL DEFAULT ‘0’’,‘cat_owner C(255) NOTNULL DEFAULT ‘0’’) sql=
Array
(
[0] => BEGIN
[1] => SELECT * INTO TEMPORARY TABLE egw_categories_tmp FROM egw_categories
[2] => DROP TABLE “egw_categories”
[3] => CREATE TABLE “egw_categories” (
“cat_owner” VARCHAR(255) DEFAULT ‘0’ NOT NULL
)
[4] => INSERT INTO egw_categories SELECT FROM egw_categories_tmp
[5] => DROP TABLE egw_categories_tmp
[6] => COMMIT
)
Does anybody know how to fix it?
Thank you for your reply.
Sincerely
Roman Laube