parsing all the code for bad inserts !!!
Brought to you by:
mazzabr
All the inserts in phpnuke are like that :
insert(NULL,...,...);
But the primary key in postgres is declared as NOT NULL
--> NULL shoul be replaced everywhere with the nextval
('concerned_sequence')
joel@agency.be