Hello,
that last error is gone : i have manually delete the row on the table interreg with mysql workbench and also manually update it :
INSERT INTO `interreg` (`varname`, `value`) VALUES
('unique_id', '0');
then all is fine now.
I have also find some people fix that kind of error when they rebuild the table with these parameters :
CREATE TABLE IF NOT EXISTS `interreg` (
`varname` varchar(11) NOT NULL,
`value` varchar(20) NOT NULL,
PRIMARY KEY (`varname`)
) ENGINE=MyISAM;
INSERT INTO `interreg` (`varname`, `value`) VALUES
('unique_id', '0');
Was not necessary in my case.
I don't have so much time this week but i will try to rebuild new server and see if i can fix some part of the "position laag" issue. (on server side)
o/