By OSYKA ANATOLIY on Thursday, 07 November 2013
Posted in General Issues
Replies 4
Likes 0
Views 1.1K
Votes 0
Fatal error: Cannot make non static method JRouter::encodeSegments() static in class DiscussRouter in /home/bh5619/public_html/components/com_easydiscuss/helpers/router.php on line 818.
Help solve the problem. Sincerely Osyka Anatoly.
You're welcome. glad to heard your issues resolved

Best Regards
Arlex
·
Thursday, 07 November 2013 18:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

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
·
Thursday, 07 November 2013 17:49
·
0 Likes
·
0 Votes
·
0 Comments
·
It's working! thank you
·
Thursday, 07 November 2013 17:59
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

You're welcome. Thanks for getting back to us that is works. Have a nice day XD
·
Sunday, 01 December 2013 11:02
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post