I realize that this is pretty old, hopefully you can help me sort it out.
Somewhere along the line about a year ago my mysql server died in the middle of installing the old version. Since then I've always wanted to get this sucker to work, but I have a handful of problems.
For one, I can't uninstall the old plugin. I believe it's because it's looking for DB tables that don't exist:
Code:
Database error in vBulletin 3.6.3:
Invalid SQL:
ALTER TABLE vb3_post DROP nowplaying;
MySQL Error : Can't DROP 'nowplaying'; check that column/key exists
Error Number : 1091
If I install this version and allow overwrite, then enable it, I get this DB error:
Code:
Invalid SQL:
INSERT INTO vb3_post
(showsignature, allowsmilie, username, userid, title, pagetext, iconid, visible, nowplaying, dateline, ipaddress, attach, threadid)
VALUES
(1, 1, 'Chris', 23, 'Sdfasdf', 'sdfsdaf', 0, 1, '', 1178469421, '141.154.30.233', 0, 28381);
MySQL Error : Unknown column 'nowplaying' in 'field list'
I _think_ what I might need to do is create the missing column manually, then uninstall/reinstall, but I'd love to get confirmation before that.. And the proper mysql syntax to do it.
If you could take a peek at it Dan I'd mucho appreciate it.