Keyword
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.

Error Message

  • David Moore
  • David Moore's Avatar Topic Author
  • Offline
  • New Member
More
15 years 11 months ago #20374 by David Moore
Error Message was created by David Moore
I am attempting to track down a problem on my site.
I turned on maximal reporting in joomla config
I got back
Notice: Undefined variable: mosConfig_lang in /home/sites/mysite/public_html/plugins/content/jwsigpro.php on line 74

line 74 is:

$jfsupport = $pluginParams->get('jfsupport', 0); $language = ($jfsupport)?$mosConfig_lang:$language_set;

I have J1.5.9 and Joomfish on board

What does this mean?

I posted this a little while ago when I had J1.5.8.
The error does not give me problems - I don't think it just appears when I turn on maximal reporting trying to find errors when they arise.

Please Log in or Create an account to join the conversation.

  • JoomlaWorks Support Team
  • JoomlaWorks Support Team's Avatar
  • Offline
  • Platinum Member
More
15 years 11 months ago #20375 by JoomlaWorks Support Team
Replied by JoomlaWorks Support Team on topic Re: Error Message
Hi there.

Try to import the code from this post
forum.joomlaworks.net/index.php?topic=6553.msg24100#msg24100

Change the code
$jfsupport = $pluginParams->get('jfsupport', 0); $language = ($jfsupport)?$mosConfig_lang:$language_set;

with
$jfsupport = $pluginParams->get('jfsupport', 0);
if($jfsupport) {
  $lang     =& JFactory::getLanguage();
  $language = $lang->getBackwardLang();  
} else $language = $language_set;
Give it a try!  ;)

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • David Moore
  • David Moore's Avatar Topic Author
  • Offline
  • New Member
More
15 years 11 months ago #20376 by David Moore
Replied by David Moore on topic Re: Error Message
Well the previous error disappeared when I refreshed - great!

Now I looked more I have found more error messages from other kit.
One is the Joomlaworks tabs.

I will find the right forum threads and hunt around some more.

Thanks for the help with sigpro

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum