Database driver 'subdomains/testcms/lib/adodb/datadict/datadict-.inc.php' not available
the code is simple
Code: Select all
function Install()
{
$config = $this->cms->config;
$db = $this->cms->db;
$dict = NewDataDictionary($db);
$flds = "
ID I KEY AUTO,
endung C(10),
landver C(60),
einricht N(10.2),
jahrgeb N(10.2)
";
$taboptarray=array('mysql'=>'TYPE=MyISAM');
$sqlarray = $dict->CreateTableSQL(cms_db_prefix()."domainpreis", $flds, $taboptarray);
$dict->ExecuteSQLArray($sqlarray);
}
i try to do this on othermodules but they are working fine.
PHP5, MYSQL, APACHE
thanks for help

