By Ha Cong Tien on Saturday, 23 November 2013
Posted in Technical Issues
Replies 3
Likes 0
Views 834
Votes 0
Hello Team!

Did you try this with Joomla 3.x? I installed my site everything is broken down :| having blank page. When i turned on development mode. I got this
Fatal error: Cannot make non static method JRouter::encodeSegments() static in class DiscussRouter in /home2/landofco/public_html/components/com_easydiscuss/helpers/router.php on line 818

Please check and fix it soon.
I 'm waiting for solution to publish my site soon.

thanks
Hello Ha Cong Tien,

I am really sorry for the delay of this reply as it is a weekend for us here.
Actually this bug we already fixed in beta 2 version of Easydiscuss
Anyway, 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.
·
Saturday, 23 November 2013 13:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Mate, That is solution to resolve
·
Saturday, 23 November 2013 15:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Ha Cong Tien,

You're welcome, have a nice day.
·
Saturday, 23 November 2013 15:59
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post