MyBB Community Forums

Full Version: Call to a member function load() on a non-object MyshoutBox
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi, when I active myshoutbox 1.7 from ACP and go in a thread, I have this error:

Fatal error: Call to a member function load() on a non-object in /myforum/inc/plugins/myshoutbox.php on line 926

and I can't see threads in the forums.

How can I fix it?
i need help ):
Try re-upload the plugin file from a fresh download.
I confirm that this is a bug, I found this simple fix,

edit line 926:

$lang->load('myshoutbox');

replace with:

if ($lang) {
$lang->load('myshoutbox');
}

hopefully this will help those who encounters the same error
not solved, help-me.
Can you make sure $lang is defined as globals?
Friend could explain better? I'm new to MyBB.
not solved
help please
Have you uploaded the language file correctly?
Pages: 1 2