pswish_themes
Member
Posted 7 months ago #
Hi,
I installed the plug in automatically through wordpress installer, and I get this error on plug in manager page:
WordPress database error: [Table 'lorelei_wrdp11.wp_slidoox' doesn't exist]
select * from wp_slidoox order by position ASC
how can I fix it please?
http://wordpress.org/extend/plugins/slidoox/
sjsperry
Member
Posted 4 months ago #
I had the same problem, you need to run a SQL command via phpmyadmin or a similar tool. Once in your db, orelei_wrdp11...
CREATE TABLE wp_slidoox (
id mediumint(9) NOT NULL AUTO_INCREMENT,
title VARCHAR(100) NOT NULL,
content text NOT NULL,
position int(3) NOT NULL,
UNIQUE KEY id (id)
)