Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fatal error: Call to a member function getKeyName()

Tags:

member

joomla

I am new in joomla . i have created a joomla component and when i click on new button in admin then i am getting such error.

Fatal error: Call to a member function getKeyName() on a non-object in C:\xampp\htdocs\Joomla1\libraries\joomla\application\component\modeladmin.php on line 801

Please help

like image 315
classicalrehan Avatar asked Jan 16 '14 08:01

classicalrehan


2 Answers

The problem is cause by your JTable class. Make sure you have correct filename and class name in administrator/components/com_YOUREXTENSION/tables/ You can find example in any core Joomla extension.

like image 189
di3sel Avatar answered Sep 18 '22 20:09

di3sel


public function getTable($type = 'Category', $prefix = 'CatalogTable', $config = array())

{
    return JTable::getInstance($type, $prefix, $config);
}

Check your $prefix param!I also just this faulty. My component is: com_catalog, and the $prefix = 'CatalogTable'

like image 42
user1220176 Avatar answered Sep 17 '22 20:09

user1220176