Ok so this is what I had done to get it to work
1. Edit the products_timeslips.xml file. Find where it says
Code:
$db->query("DELETE FROM " . TABLE_PREFIX . "phrase WHERE varname = 'setting_" . $title . "_desc'");
change it to:
Code:
$db->query("DELETE FROM " . TABLE_PREFIX . "phrase WHERE varname = 'setting_" . $title . "_description'");
2. You will have to manually add the SQL Table into your database. To do so you can use this SQL query
Code:
CREATE TABLE `vb3_customfile` (
`userid` int(10) unsigned NOT NULL default '0',
`filedata` mediumtext NOT NULL,
`dateline` int(10) unsigned NOT NULL default '0',
`filename` varchar(100) NOT NULL default '',
`visible` smallint(6) NOT NULL default '0',
`filesize` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`userid`)
)
note you will probably see the allowtimeslips upload twice. I just ignored it and everything seems hunky dorry to me. PLEASE DO THIS AT YOUR OWN RISK. I am unaware as to how your code or sites run so it may or may not work for you.