So the installation was correct?
Try access by URL, something like this: domain.com/index.php?module=ModuleName&view=List
If everything is correct you can run a vtlib to populate. This is just a reference:
$moduleInstance = Vtiger_Module::getInstance($MODULENAME);
$menuInstance = Vtiger_Menu::getInstance('Tools');
$menuInstance->addModule($moduleInstance);
or something like this:
`
$moduleInstance = Vtiger_Module::getInstance($MODULENAME);
$APPNAME = 'TOOLS';
if ($moduleInstance) {
$adb->pquery("DELETE FROM vtiger_app2tab WHERE tabid = ?", array($moduleInstance->getId()));
$adb->pquery(
"INSERT INTO vtiger_app2tab (tabid, appname, sequence) SELECT * FROM (SELECT ?, ?, ?) AS tmp
WHERE NOT EXISTS (SELECT 1 FROM vtiger_app2tab WHERE tabid = ? AND appname = ?) LIMIT 1",
array($moduleInstance->getId(), $APPNAME, $sequence, $moduleInstance->getId(), $APPNAME)
);
}
`