Quote:
Originally Posted by StarBuG
I get
Table 'dbname.vbsurvey_surveys' doesn't exist
when I try to call survey.php
In my db only survey_ tables exist, not vbsurvey.
I don't use prefixes for tables
StarBuG
|
Open survey/classes/mainclass.php find this
Code:
//fix after setting tables in install script
$this->CONF['db_tbl_prefix'] = TABLE_PREFIX . 'survey_';
and replace with this
Code:
//fix after setting tables in install script
$this->CONF['db_tbl_prefix'] = TABLE_PREFIX . 'vbsurvey_';