I have looked in this issue and i am feeling like a tennis ball jumping between one file to another.
can a developer or someone tell me where is the array $aModule because i think it might have some issue.
in this function
function BxDolModule($aModule) {
parent::BxDolMistake();
$this->_aModule = $aModule;
$sClassPrefix = $aModule['class_prefix'];
$sClassPath = BX_DIRECTORY_PATH_MODULES . $aModule['path'] . 'classes/';
$sClassName = $sClassPrefix . 'Config';
require_once($sClassPath . $sClassName . '.php');
$this->_oConfig = new $sClassName($aModule);
$sClassName = $sClassPrefix . 'Db';
require_once($sClassPath . $sClassName . '.php');
$this->_oDb = new $sClassName($this->_oConfig);
$sClassName = $sClassPrefix . 'Template';
require_once($sClassPath . $sClassName . '.php');
$this->_oTemplate = new $sClassName($this->_oConfig, $this->_oDb);
$this->_oTemplate->loadTemplates();
}
$aModule['path'] doesn't get the path or $aModule['class_prefix'] doesn't get the prefix
so, if anybody know where is this array. That will be very helpful.
so much to do....