MyBB Community Forums

Full Version: [Websocket] Miuna Shoutbox 9.0.0
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
(2015-06-13, 05:47 PM)martec Wrote: [ -> ]
(2015-06-13, 05:43 PM)Dragonexsperm Wrote: [ -> ]
(2015-06-13, 05:35 PM)martec Wrote: [ -> ]
(2015-06-13, 05:06 PM)Dragonexsperm Wrote: [ -> ]IT's doing the skipping line and not showing the images thing, and all my information is correct. Help please?

provide test admin account and openshift account (send PM).
One question. You using Miuna Shoutbox Server 3.5? Because, setup 3.5 is very easy.

PM'd you info and 3.5

for me work fine...
you need register and login first

[Image: I85j1dM.png]

how do you login?

actually none of the images are showing now, how do you fix that?
(2015-06-13, 05:53 PM)Dragonexsperm Wrote: [ -> ]
(2015-06-13, 05:47 PM)martec Wrote: [ -> ]for me work fine...
you need register and login first

[Image: I85j1dM.png]

how do you login?

change to default template...
you will see register and login button.

in your custom theme you need make changes in css to you see buttons.
go to root/jscripts/miuna/shoutbox/style.css

find

#banusr div, #notice div, #prune div, #pml div, #log div, #sound div {
height: 16px;
width: 16px;
}

replace

#banusr div, #notice div, #prune div, #pml div, #log div, #sound div, #register div, #login div {
height: 16px;
width: 16px;
}

now go in go to root/jscripts/sceditor/editor_themes/msb.css

find

.sceditor-button-spoiler div {
background-image:url(s.png);
}
.sceditor-button-imgur div {
background-image:url(imgur.png);
}
.sceditor-button-imgur div.imgurup {
background-image:url(spinner.gif) !important;
}

Replace:

.sceditor-button-spoiler div {
background-image:url(s.png);
height: 16px;
width: 16px;
}
.sceditor-button-imgur div {
background-image:url(imgur.png);
height: 16px;
width: 16px;
}
.sceditor-button-imgur div.imgurup {
background-image:url(spinner.gif) !important;
height: 16px;
width: 16px;
}
when i go to my website i have notice "Please register or login first." and miuashoutbox don't work :/ Can anyone help me?
v 3.2.1 released:

This version is small fix for people that using custom theme that buttons icons not appear. So if you don't have problem with your theme, you can skip this version.

Quote:This version not work with Miuna Shoutbox Server 1.0, 2.0 and 3.0, you need upgrade Miuna Shoutbox Server to 3.5. You need delete application in openshift and create again with 3.2 or 3.5.
Quote:Installation of Miuna Shoutbox Server 3.5 is different of 1.0, 2.0, 3.0 and 3.2. So you need read first post again before install Miuna Shoutbox Server 3.5

Issue solved:
-Small css changes to solve problem with custom theme that buttons not appear.



(2015-06-13, 06:31 PM)inferno211 Wrote: [ -> ]when i go to my website i have notice "Please register or login first." and miuashoutbox don't work :/ Can anyone help me?

provide test admin account and openshift account (send PM).
Hi Martec

I think that sound feature has a problem: all users can to listen the private message sound alerts .

Cheers
(2015-06-15, 02:09 AM)insertco Wrote: [ -> ]Hi Martec

I think that sound feature has a problem:  all users can to listen the private message sound alerts .

Cheers

Thanks report and sorry for my mistake.
I completely forgot to filter PM in server side.

Issue fixed in Miuna Shoutbox Server 3.6

Yes unfortunately you need recreate server with 3.6 to solve this issue.
Hey there,

I am trying to install the shoutbox on a different page, but it does not seem to work.

I did this:


Quote:<html>
<head>
<title>{$mybb->settings['bbname']} - Chat Room</title>
{$headerinclude}
</head>
<body>
{$header}

{$miunashout}


{$footer}
</body>
</html>

but the shoutbox is not showing up on the page.

http://lgbteens.net/chatroom.php
(2015-06-15, 04:20 AM)propilot Wrote: [ -> ]Hey there,

I am trying to install the shoutbox on a different page, but it does not seem to work.

I did this:


Quote:<html>
<head>
<title>{$mybb->settings['bbname']} - Chat Room</title>
{$headerinclude}
</head>
<body>
{$header}

{$miunashout}


{$footer}
</body>
</html>

but the shoutbox is not showing up on the page.

http://lgbteens.net/chatroom.php

in inc/plugins/miunashoutbox.php

find

if ($settings['miunashout_online'] && !$settings['miunashout_des_index']) {
$plugins->add_hook('index_start', 'MiunaShout');
}
if ($settings['miunashout_online'] && $settings['miunashout_act_port']) {
$plugins->add_hook('portal_start', 'MiunaShout');
}

replace:

if ($settings['miunashout_online']) {
$plugins->add_hook('global_start', 'MiunaShout');
}

find:

if (THIS_SCRIPT == 'portal.php' && $mybb->settings['miunashout_act_port']) {
$templatelist .= 'codebutmiuna,templateShoutBox,templateShoutBoxGuest';
}

add below:

if (THIS_SCRIPT == 'chatroom.php') {
$templatelist .= 'codebutmiuna,templateShoutBox,templateShoutBoxGuest';
}
(2015-06-15, 06:03 AM)martec Wrote: [ -> ]
(2015-06-15, 04:20 AM)propilot Wrote: [ -> ]Hey there,

I am trying to install the shoutbox on a different page, but it does not seem to work.

I did this:


Quote:<html>
<head>
<title>{$mybb->settings['bbname']} - Chat Room</title>
{$headerinclude}
</head>
<body>
{$header}

{$miunashout}


{$footer}
</body>
</html>

but the shoutbox is not showing up on the page.

http://lgbteens.net/chatroom.php

in inc/plugins/miunashoutbox.php

find

if ($settings['miunashout_online'] && !$settings['miunashout_des_index']) {
$plugins->add_hook('index_start', 'MiunaShout');
}
if ($settings['miunashout_online'] && $settings['miunashout_act_port']) {
$plugins->add_hook('portal_start', 'MiunaShout');
}

replace:

if ($settings['miunashout_online']) {
$plugins->add_hook('global_start', 'MiunaShout');
}

find:

if (THIS_SCRIPT == 'portal.php' && $mybb->settings['miunashout_act_port']) {
$templatelist .= 'codebutmiuna,templateShoutBox,templateShoutBoxGuest';
}

add below:

if (THIS_SCRIPT == 'chatroom.php') {
$templatelist .= 'codebutmiuna,templateShoutBox,templateShoutBoxGuest';
}

Hey thank you,
the shoutbox is broken now

http://i.imgur.com/KMPt25w.png
(2015-06-15, 07:39 AM)propilot Wrote: [ -> ]
(2015-06-15, 06:03 AM)martec Wrote: [ -> ]
(2015-06-15, 04:20 AM)propilot Wrote: [ -> ]Hey there,

I am trying to install the shoutbox on a different page, but it does not seem to work.

I did this:


Quote:<html>
<head>
<title>{$mybb->settings['bbname']} - Chat Room</title>
{$headerinclude}
</head>
<body>
{$header}

{$miunashout}


{$footer}
</body>
</html>

but the shoutbox is not showing up on the page.

http://lgbteens.net/chatroom.php

in inc/plugins/miunashoutbox.php

find

if ($settings['miunashout_online'] && !$settings['miunashout_des_index']) {
$plugins->add_hook('index_start', 'MiunaShout');
}
if ($settings['miunashout_online'] && $settings['miunashout_act_port']) {
$plugins->add_hook('portal_start', 'MiunaShout');
}

replace:

if ($settings['miunashout_online']) {
$plugins->add_hook('global_start', 'MiunaShout');
}

find:

if (THIS_SCRIPT == 'portal.php' && $mybb->settings['miunashout_act_port']) {
$templatelist .= 'codebutmiuna,templateShoutBox,templateShoutBoxGuest';
}

add below:

if (THIS_SCRIPT == 'chatroom.php') {
$templatelist .= 'codebutmiuna,templateShoutBox,templateShoutBoxGuest';
}

Hey thank you,
the shoutbox is broken now

http://i.imgur.com/KMPt25w.png

provide test admin account