Got some more info.
If I rename the table: wp_ngg_pictures, then disable and activate nextgen gallery again. I CAN move the albums / gallery’s. If I create a new gallery, upload a pic in it, take that as a preview pic, I still can move them around…
As soon as I delete that table and put the old one back, the problem is back. I’ve done a dump of the table’s structure:
CREATE TABLE
wp_ngg_pictures` (
pid
bigint(20) NOT NULL auto_increment,
post_id
bigint(20) NOT NULL default ‘0’,
galleryid
bigint(20) NOT NULL default ‘0’,
filename
varchar(255) NOT NULL default ”,
description
mediumtext,
alttext
mediumtext,
imagedate
datetime NOT NULL default ‘0000-00-00 00:00:00’,
exclude
tinyint(4) default ‘0’,
sortorder
bigint(20) NOT NULL default ‘0’,
meta_data
longtext,
PRIMARY KEY (pid
),
KEY post_id
(post_id
)
) ENGINE=MyISAM AUTO_INCREMENT=32342 DEFAULT CHARSET=latin1 AUTO_INCREMENT=32342 ;`
This looks okay to me. Anybody who has a suggestion ??