Quote:
Originally Posted by GRE
MySQL Error : Table 'database.dbtech_vbslider_customcontent' doesn't exist
|
It appears the table didn't get created during the install. You can either try re-running the install (re-import the product), or run the query manually. You can find the query in the file /dbtech/vbslider/install/100.php, starting on line 121. If you have a table prefix on your forum, then replace
Code:
" . TABLE_PREFIX . "
with your prefix (for example, if your prefix is
vb_, then the first line should look as follows: )
Code:
CREATE TABLE IF NOT EXISTS vb_dbtech_vbslider_customcontent (
If you don't have a table prefix, just delete that part of the code, so the first line would look like
Code:
CREATE TABLE IF NOT EXISTS dbtech_vbslider_customcontent (
Brad