By Rodney on Saturday, 09 November 2013
Posted in General Issues
Replies 3
Likes 0
Views 783
Votes 0
Hi,

I just upgraded to Joomla 3.2 and purchased and installed easy discuss the latest version today.

I can see the component in the component section and all the tags (Have attached screen shot Called egs2)

But as soon as I click on the tag i get a complete white screen. Nothing. ( Have attached a screenshot called easydiscuss)

Is their a comparability issue with Joomla3.2 help please

have set you up a superadmin login for site and a FTP account.
Hello Rodney,

I am really sorry for the delay of this reply as it is a weekend for us here.
I already help you fixed it.

You can remove the "static" from your file JoomlaFolder\components\com_easydiscuss\helpers\router.php
AT LINE 813

public static function encodeSegments($segments)
{
return JFactory::getApplication()->getRouter()->_encodeSegments($segments);
}

Change to

public function encodeSegments($segments)
{
return JFactory::getApplication()->getRouter()->_encodeSegments($segments);
}


Hope this help.

Best Regards
Arlex
·
Saturday, 09 November 2013 10:32
·
0 Likes
·
0 Votes
·
0 Comments
·
its already removed


if( !empty( $lang ) && $lang != '*' )
{
$db = DiscussHelper::getDBO();
$langQuery = ' AND (' . $db->nameQuote( 'language' ) . '=' . $db->Quote( $lang ) . ' OR ' . $db->nameQuote( 'language' ) . ' = '.$db->Quote('*').' )';
}

return $langQuery;
}

public function encodeSegments($segments)
{
return JFactory::getApplication()->getRouter()->_encodeSegments($segments);
}

}
·
Saturday, 09 November 2013 12:13
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Rodney,

Thanks for updated on this Glad your issues resolved.


Best Regards
Arlex
·
Saturday, 09 November 2013 14:17
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post