By JDev on Saturday, 23 January 2016
Posted in Technical Issues
Replies 3
Likes 0
Views 502
Votes 0
I see this in our error logs alot PHP Fatal error: Call to a member function set() on null in sandbox/components/com_easysocial/views/apps/view.html.php on line 136

What could this be regarding and how do I investigate to provide more information for resolution?

Thanks.
Hm, this seems to happen when user tries to view an invalid app. Can you edit the file /components/com_easysocial/views/apps/view.html.php and at line 136 locate the codes below,


$info->set($this->getMessage());


Replace it with,


$this->info->set($this->getMessage());


See if the error still occurs.
·
Saturday, 23 January 2016 22:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Made the change, will keep an eye on the logs. I see warnings about $info not being defined and I also see other code uses $this->info so it was probably missed during an update/refactor.

Thanks, will let you know if I still face issues with this.
·
Tuesday, 26 January 2016 08:29
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Keep us updated with the issue.
·
Tuesday, 26 January 2016 17:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post