Thread Starter
torgem
(@torgem)
My Tables Prefix is “wp01_”, default is “WP_”. Maybe the plugin does not work with alternative table prefix?
But… I see, other tables have been generated:
e. g. “wp01_rednaoeasycalculationforms_records”
mySQL Version is 5.5
-
This reply was modified 3 years ago by torgem.
Thread Starter
torgem
(@torgem)
This did not help:
public function MaybeCreateTables(){
$optionName=’rednao_’.$this->Prefix.’_db_version’;
$dbversion=get_option($optionName,0);
//if($dbversion<$this->dbVersion)
if(true)
{
$this->OnCreateTable();
update_option($optionName,$this->dbVersion);
}
}