Hi
If you use Joomla 1.5
Plz edit Base.class.php
Search those lines:
function loadMenu(){
if(defined( '_VALID_MOS' )) $this->loadMenu_10x();
else $this->loadMenu_15();
}
function createParameterObject($param, $path='', $type='menu') {
if(defined( '_VALID_MOS' )) return new mosParameters($param, $path, $type);
else return new JParameter($param, $path);
}
Change to
function loadMenu(){
//if(defined( '_VALID_MOS' )) $this->loadMenu_10x();
//else
$this->loadMenu_15();
}
function createParameterObject($param, $path='', $type='menu') {
//if(defined( '_VALID_MOS' )) return new mosParameters($param, $path, $type);
//else
return new JParameter($param, $path);
}