I’m not an expert on fixing this, but I experimented a bit myself and found a solution that worked for me… I think I might be missing something, but it’s working! You need to look at the slidedoox.php file, and find the area where it creates the table, and make your own wp_slidoox table in your wordpress database with the same fields… so far I’ve determined there are 4 fields… id, title, content, position
id mediumint(9) NOT NULL AUTO_INCREMENT,
title VARCHAR(100) NOT NULL,
content text NOT NULL,
position int(3) NOT NULL,
id should be set to primary key
I hope this helps others, the only issue I see right now with it set this way… there is some wordpress dialog covering part of the slidoox manager … other than that everything appears to work properly.