Quote:
Originally Posted by billrini
It looks like the script does not use the table prefix. My tables are vb_* I get the error:
ALTER TABLE `filedata` ADD `smushed` VARCHAR( 3 ) NOT NULL DEFAULT 'no';
Any chance you could update this to use the table prefix? I can do it myself but I would imagine others are going to run into this same issue and it seems like it would reduce a lot of posts from people saying, "It won't install" :-)
|
Thanks for pointing that out, completely looked over those sections.
Theres also a typo in the uninstall code, you will need to change the first line from:
PHP Code:
$db->query_read("ALTER TABLE " . TABLE_PREFIX . "filedata DROP smushed;")
To this:
PHP Code:
$db->query_read("ALTER TABLE " . TABLE_PREFIX . "filedata DROP smushed");
Everyone else can do those edits manually or upload version 1.1 and allow it to overwrite.