PDA

View Full Version : Fatal Error!


djproaudio
07-06-2008, 11:16 PM
Getting the following error in JA SHOWCASE when using SHOWCASE MANAGER and assigning DETAIL INFORMATION link. When I remove the link, it works fine.

Fatal error: Undefined class name 'jashowcaseviewjashowcase' in /home/repairny/public_html/modules/mod_jashowcase_hot/tmpl/default.php on line 75

Any ideas? I seem to be having alot of issues with JA SHOWCASE. Is this compatible with Joomla 1.5? or is there a bug in this module?

kashxo
07-07-2008, 07:49 AM
Hello djproaudio,
Could you please provide us more information regarding your issue?

djproaudio
07-08-2008, 04:03 AM
I am not sure how much more information do you need? I can't enable the error to occur on the site, because it will disrupt our web site. So I have had to disable the DETAIL INFORMATION link option in Showcase Manager.

I get the following error in JA SHOWCASE (admin) when using SHOWCASE MANAGER and assigning DETAIL INFORMATION link. When I remove the link, it works fine.

Fatal error: Undefined class name 'jashowcaseviewjashowcase' in /home/repairny/public_html/modules/mod_jashowcase_hot/tmpl/default.php on line 75

Using Joomla 1.5
Installed the JA Kulanite Template
Here is the SITE (http://www.repairny.com)
No other modules installed, other than the ones included with the template (JA News, JA Tabs)

Thanks, and let me know what other information you need?

djproaudio
07-08-2008, 04:10 AM
I've enabled the link in JA SHOWCASE (admin), and now the error is displayed. Problem is that the web site is not accessible because of the error.

I will leave it like this until you tell me otherwise.

omarram
07-08-2008, 04:23 PM
At first glance it doesn't look like the view is being included and you need to add another include file to the top of the default.php file:

require_once(JPATH_SITE.DS.'components'.DS.'com_ja showcase'.DS.'views'.DS.'jashowcase'.DS.'view.html .php');

This is the file where the JashowcaseViewJashowcase::sefRelToAbs method is defined. At the moment it is undefined because this file is not included, which causes PHP to throw the error but after you add the require_once line you should be good to go.

djproaudio
07-08-2008, 05:42 PM
Spot on! It worked. Thanks again!