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.
thank you very much martec Smile you always response on time

i love all of your products very much Smile hats off
(2015-02-20, 05:49 AM)mujeebdgk Wrote: [ -> ]thank you very much martec Smile  you always response on time

i love all of your products very much Smile hats off

thanks for feedback Big Grin
when we pm any user , PM windows doesn't open automatically .
(2015-02-20, 06:18 AM)mujeebdgk Wrote: [ -> ]when we pm any user , PM windows doesn't open automatically .

user only know of PM in main tab... not will open PM tab automatically...
is there anyway to change css , of shot box like dvz shoutbox ?
(2015-02-20, 06:23 AM)mujeebdgk Wrote: [ -> ]is there anyway to change css , of shot box like dvz shoutbox ?

you can edit jscripts/miuna/shoutbox/style.css

after each edit of style.css you need edit codebutmiuna template

find:

<link href="{$mybb->asset_url}/jscripts/miuna/shoutbox/style.css?ver=1.0.6" rel='stylesheet' type='text/css'>

replace:

<link href="{$mybb->asset_url}/jscripts/miuna/shoutbox/style.css?ver=1.0.6.x" rel='stylesheet' type='text/css'>

change "x of 1.0.6.x" with some value... And increment value after each edit you made in style.css to avoid problem with cache

repeat samething in templateShoutBoxGuest template
i don't know how to say thanks to you Smile you are always quick & responsive , thank a trillion . i ll give a try and will share result here soon
(2015-02-20, 05:14 AM)martec Wrote: [ -> ]
(2015-02-20, 04:28 AM)mortified_penguin Wrote: [ -> ]Hi, I installed your plugin, and it seems not to be working client-side for me. I have the "Miuna Shoutbox Server successfully installed!" message on OpenShift, and rockmongo is showing the creation of a miunashout table. But when I get to my website, the shoutbox is blank. (http://i.imgur.com/90XhEJ4.png) I've triple and quadruple checked everything: my step 5 web address, my link to the server, my Socket.io address, everything seems to be in order. Any ideas on what I may have done wrong?

some common mistakes:
Checks again:

1 - If your forum link is like http://xxxx.com/yyyy (yyyy = forum = community etc...)
so correct only use "xxxx.com" part... you never can put "/yyyy" part.

2 - this part var origin = 'mybb.com:80,www.mybb.com:80';
order is important... if you puted var origin = 'www.mybb.com:80,mybb.com:80'; (not will work)

about port 80 you need put in without www and with www
so something like below not will work

var origin = 'mybb.com:80,www.mybb.com'; (incorrect)
var origin = 'mybb.com,www.mybb.com:80'; (incorrect)

Correct is var origin = 'mybb.com:80,www.mybb.com:80';

3 - if you made some above mistake... Need recreate Miuna Server...
First you need delet application from Openshift (make changes only in github not solve issue because openshift create clone of your repository)...
So need click in buttom below in openshift and create again Miuna Shout Server (of course first you need edit again file in github) [Image: 2FxRAt7.png]

4 - In step 11 puted something different of miunashout (if you puted something differente never will work)

Hey martec, thanks for responding! I tried all your suggestions, and I even caught a mistake I thought was the problem, but the shoutbox is still blank when I load it. Here's my var origin line: http://i.imgur.com/cvb4LlP.png?1 . I caught a missing second :80 declaration, but after deleted and recreated the application, still nothing. Here is my success message server-side: http://i.imgur.com/TlRHWNC.png, and here are my server connect settings: http://i.imgur.com/lTeNCdi.png . Lastly, here is my rockmongo screen, with the tables created: http://i.imgur.com/YkmLrFf.png . Thanks for any help you can provide!
i was having same issue as you have , then i delete application on openshift  and i also delete domain too . and i recreate again then after that everything works just fine  and one more thing  "link to miuana shoutbox server " no need last trailing slash [Image: lTeNCdi.png]

here i can see last trailing slash , remove it first then try 
(2015-02-20, 02:55 PM)mujeebdgk Wrote: [ -> ]i was having same issue as you have , then i delete application on openshift  and i also delete domain too . and i recreate again then after that everything works just fine  and one more thing  "link to miuana shoutbox server " no need last trailing slash [Image: lTeNCdi.png]

here i can see last trailing slash , remove it first then try 

Thanks for the suggestion man! I tried deleting the application, the domain, re-entering all connection info, and removing the trailing slash. Still nothing. Thanks for the help though!