I can't seem to get rid of this error whenever I activate the component...
What is the full error message (including file and line number)?
The full message is read on the mobile device so I can't get the line number, it reads:
JDispatcher:::register: Event handler not recognized.
It saids it three times... I can't get rid of this
JDispatcher:::register: Event handler not recognized.
It saids it three times... I can't get rid of this
To get more info you can patch libraries/joomla/event/dispatcher.php in the following way: replace line
to
(note that single quotes have been changed to double ones).
JError::raiseWarning('SOME_ERROR_CODE', 'JDispatcher::register: Event handler not recognized.', 'Handler: '.$handler );to
JError::raiseWarning('SOME_ERROR_CODE', "JDispatcher::register($event,$handler): Event handler not recognized.", 'Handler: '.$handler );(note that single quotes have been changed to double ones).
Okay great, I just bookmarked this page so when I have more time I'll try this... this will fix the problem?
No, it just get incorrect event+handler pair. But it allows to localize the issue.

