MyBB Community Forums

Full Version: [AJAX] Inferno Shoutbox for MyBB
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
(2014-10-01, 11:26 PM)Michaelciv1 Wrote: [ -> ]I just installed Inferno Shoutbox today, but I keep getting this message when I got to the shoutbox on my forums.

[Image: wUmsauj.png]

Help pl0x?

Also, are there installation instruction somewhere on the thread? I couldn't find them and that's probably why I'm getting this error.

Actually yes, there were directions with the download(at least for MyBB 1.8). http://community.mybb.com/thread-149231-...pid1100105

What does the browser console log say when the error occurs?
(2014-10-02, 12:42 AM)Clank Wrote: [ -> ]
(2014-10-01, 11:26 PM)Michaelciv1 Wrote: [ -> ]I just installed Inferno Shoutbox today, but I keep getting this message when I got to the shoutbox on my forums.

[Image: wUmsauj.png]

Help pl0x?

Also, are there installation instruction somewhere on the thread? I couldn't find them and that's probably why I'm getting this error.

Actually yes, there were directions with the download(at least for MyBB 1.8). http://community.mybb.com/thread-149231-...pid1100105

What does the browser console log say when the error occurs?

http://gyazo.com/d685f5d7fb49144044fa780f1e5741de

That's what my browser console says.
(2014-10-02, 05:06 AM)Michaelciv1 Wrote: [ -> ]
(2014-10-02, 12:42 AM)Clank Wrote: [ -> ]
(2014-10-01, 11:26 PM)Michaelciv1 Wrote: [ -> ]I just installed Inferno Shoutbox today, but I keep getting this message when I got to the shoutbox on my forums.

[Image: wUmsauj.png]

Help pl0x?

Also, are there installation instruction somewhere on the thread? I couldn't find them and that's probably why I'm getting this error.

Actually yes, there were directions with the download(at least for MyBB 1.8). http://community.mybb.com/thread-149231-...pid1100105

What does the browser console log say when the error occurs?

http://gyazo.com/d685f5d7fb49144044fa780f1e5741de

That's what my browser console says.

Okay, first off, you are using 000webhost. They prohibit chat scripts (including this one) on any free accounts. It is very possible that they are blocking it, in fact, I suspect that is the case.

Other than that, I would check to make sure the infernoshout.php is uploaded correctly, but again, I suspect they may be blocking it, I think all free hosting blocks it.
(2014-10-02, 05:39 AM)Clank Wrote: [ -> ]
(2014-10-02, 05:06 AM)Michaelciv1 Wrote: [ -> ]
(2014-10-02, 12:42 AM)Clank Wrote: [ -> ]
(2014-10-01, 11:26 PM)Michaelciv1 Wrote: [ -> ]I just installed Inferno Shoutbox today, but I keep getting this message when I got to the shoutbox on my forums.

[Image: wUmsauj.png]

Help pl0x?

Also, are there installation instruction somewhere on the thread? I couldn't find them and that's probably why I'm getting this error.

Actually yes, there were directions with the download(at least for MyBB 1.8). http://community.mybb.com/thread-149231-...pid1100105

What does the browser console log say when the error occurs?

http://gyazo.com/d685f5d7fb49144044fa780f1e5741de

That's what my browser console says.

Okay, first off, you are using 000webhost. They prohibit chat scripts (including this one) on any free accounts. It is very possible that they are blocking it, in fact, I suspect that is the case.

Other than that, I would check to make sure the infernoshout.php is uploaded correctly, but again, I suspect they may be blocking it, I think all free hosting blocks it.

I think most free hosting websites like that limit the number of requests you can make to the website to like 200 a day. I remember trying to mess around with other chat applications on free hosting such as 000webhost and I was getting denied after the chat ran for about 20 minutes. Like Clank said, these free hosting sites are terrible for any kind of dynamic website like MyBB
what wrong with my "openanus - some thing went wrong .." and "archive - 403 Access denied "
anus file: root >inc > plugin >inferno > anus.php (1393781503)
pls help! . ty so much
if ($action == 'archive')
{
	add_breadcrumb($settings['inferno_shoutbox_title'] . ' ' . $lang->isb_archive, 'infernoshout.php?action=archive');

	if (!$settings['inferno_archive'] || $banned)
	{
		$title = $settings['inferno_shoutbox_title'] . $lang->isb_archive_dt;
		$error = $lang->isb_archive_disabled;
		if ($banned)
		{
			$error = $lang->isb_archive_noview;
		}
		eval("\$archive = \"".$templates->get("error")."\";");
	}
	else
	{
		$total_pages = $inferno->count_total_shouts();
		$shouts_per_page = $settings['inferno_archive_shouts_per_page'];
		$shouts_per_page = ($shouts_per_page > 0 && $shouts_per_page <= $total_pages) ? $shouts_per_page : 50;
		$page = (isset($_GET['page']) ? (int) round($_GET['page']) : 1);
		$page = ($page > 0 && $page <= $total_pages) ? $page : 1;
		$total_pages = ceil($inferno->count_total_shouts() / $shouts_per_page);
		$offset = ($page <= 1 || $page > $total_pages) ? 0 : ($page - 1) * $shouts_per_page;
		$plugins->run_hooks('inferno_archive_start');
		eval("\$archive = \"".$templates->get("inferno_archive")."\";");
	}

	output_page($archive);
}

?>

if ($action == 'openanus')
{
	echo (int) file_get_contents(MYBB_ROOT . 'inc/plugins/inferno/anus.php');
}

if ($action == 'getshout')
{
	$id = (int) $_GET['id'];

	if ($id)
	{
		$shout = $inferno->get_shout($id);

		if ($shout)
		{
			if ($mod || $uid == $shout['uid'])
			{
				echo json_encode($shout);
			}
		}
	}
}
(2014-10-05, 06:13 PM)djen Wrote: [ -> ]what wrong with my "openanus - some thing went wrong .." and "archive - 403 Access denied "
anus file: root >inc > plugin >inferno > anus.php (1393781503)
pls help! . ty so much

if ($action == 'archive')
{
	add_breadcrumb($settings['inferno_shoutbox_title'] . ' ' . $lang->isb_archive, 'infernoshout.php?action=archive');

	if (!$settings['inferno_archive'] || $banned)
	{
		$title = $settings['inferno_shoutbox_title'] . $lang->isb_archive_dt;
		$error = $lang->isb_archive_disabled;
		if ($banned)
		{
			$error = $lang->isb_archive_noview;
		}
		eval("\$archive = \"".$templates->get("error")."\";");
	}
	else
	{
		$total_pages = $inferno->count_total_shouts();
		$shouts_per_page = $settings['inferno_archive_shouts_per_page'];
		$shouts_per_page = ($shouts_per_page > 0 && $shouts_per_page <= $total_pages) ? $shouts_per_page : 50;
		$page = (isset($_GET['page']) ? (int) round($_GET['page']) : 1);
		$page = ($page > 0 && $page <= $total_pages) ? $page : 1;
		$total_pages = ceil($inferno->count_total_shouts() / $shouts_per_page);
		$offset = ($page <= 1 || $page > $total_pages) ? 0 : ($page - 1) * $shouts_per_page;
		$plugins->run_hooks('inferno_archive_start');
		eval("\$archive = \"".$templates->get("inferno_archive")."\";");
	}

	output_page($archive);
}

?>

if ($action == 'openanus')
{
	echo (int) file_get_contents(MYBB_ROOT . 'inc/plugins/inferno/anus.php');
}

if ($action == 'getshout')
{
	$id = (int) $_GET['id'];

	if ($id)
	{
		$shout = $inferno->get_shout($id);

		if ($shout)
		{
			if ($mod || $uid == $shout['uid'])
			{
				echo json_encode($shout);
			}
		}
	}
}

CHMOD anus.php so it's readable and writeable and it should fix your issue, assuming you're on mybb1.8 and are using Clank's update
iam using mybb v1.6 ... so what i can do ?
(2014-10-05, 11:44 PM)djen Wrote: [ -> ]iam using mybb v1.6 ... so what i can do ?

You can still try what I suggested above, I was just mentioning that in case you were using the 1.6 version on 1.8
Hi,
I have just install this shoutbox and I got a big problem....
Please read my problem here : http://community.mybb.com/thread-161002.html

Please help me someone.............. Angel
Hi, this plugin has vulnerabilities?