- Posts: 3
- Thank you received: 0
Error message:Model class categoryModelCategory no
can you help me with this error message: Model class categoryModelCategory not found in file"
when I try displaying my cart in category view
also, why is it that the product view doesnt show anything? - blank page.
Im using Joomla v1.6
thanks
Tokunbo
Happyness is my middle name
Please Log in or Create an account to join the conversation.
That sounds like an error someone reported previously with tienda:
www.hikashop.com/en/support/forum/2-gene...ot-found-in-fil.html
Could you try the modification proposed to see from which file the problem is coming from ?
Please Log in or Create an account to join the conversation.
there is only one line in my model.php file that looks like that one you referred to in the other post about tienda.
That's interesting.
We need a bit more information as we can't reproduce the problem on our end.
Could you edit the file libraries/joomla/application/component/model.php near line 122. You should have that:
JError::raiseWarning( 0, 'Model class ' . $modelClass . ' not found in file.' );
Could you replace it by:
JError::raiseWarning( 0, 'Model class ' . $modelClass . ' not found in file '. $path );
Then, try again and copy/paste us the new error message. That will allow us to better understand the problem.
mine is:
JError::raiseWarning(0, JText::sprintf('JLIB_APPLICATION_ERROR_MODELCLASS_NOT_FOUND', $modelClass ));
is the above the one I should edit?
Happyness is my middle name
Please Log in or Create an account to join the conversation.
JError::raiseWarning( 0, 'Model class ' . $modelClass . ' not found in file '. $path );
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.