|
Joomla 1.5.8 CB 1.2 RC 4 JoomGallery 1.5 BETA 1, BUILD 20081212 GalleryTab 3Beta2 (downloaded from the noted new link on this site)
Hi, Gallerytab used to work on an earlier verion of JoomGallery, now that I am updated per above.
- 3beta2 installed fine, but when published, I get the following error on the CB profile link: (so, when attempting to use the tab published, I get this:)
Warning: joominterface::include_once(/public_html/components/com_joomgallery/language/english.php) [joominterface.include-once]: failed to open stream: No such file or directory in /public_html/components/com_joomgallery/classes/interface.class.php on line 59
Warning: joominterface::include_once() [function.include]: Failed opening '/public_html/components/com_joomgallery/language/english.php' for inclusion (include_path='.:/usr/lib/php') in /public_html/components/com_joomgallery/classes/interface.class.php on line 59
Fatal error: Cannot redeclare class Joom_Config in /public_html/administrator/components/com_joomgallery/joomgallery.config.php on line 2
------------------------
Any Ideas?
Awesome component BTW!
------------------------
Update!
Still not working, I checked out the english.php file it was looking for above, and discovered that the file is called en-gb.php not english.php - I renamed it, and it knocked the errors down to this on clicking the CB profile link:
Fatal error: Cannot redeclare class Joom_Config in /.../administrator/components/com_joomgallery/joomgallery.config.php on line 2
and, created more errors elsewhere, when the component looked for en-gb.php, so I had to rename it back as such..
so, I changed the following in interface.class.php: (to include the proper ref to the en-gb.php file as its named)
// include language for display
if (file_exists($mosConfig_absolute_path."/components/com_joomgallery/language/".$mosConfig_lang.".php"))
include_once($mosConfig_absolute_path."/components/com_joomgallery/language/".$mosConfig_lang.".php");
else
include_once($mosConfig_absolute_path."/components/com_joomgallery/language/english.php");
to:
include_once($mosConfig_absolute_path."/components/com_joomgallery/language/en-gb.php");
end result is that I still have this error when clicking on the profile link for CB with gallery tab published:
Fatal error: Cannot redeclare class Joom_Config in /.../administrator/components/com_joomgallery/joomgallery.config.php on line 2
------------------
Will update if and when I find a fix to the above issue...
|