how can we edit or delete only 1 shout ?
Thanks

its my personal Opinion if you add these instructions in first post too will be better
one more question , there is one Notice after title bar of shoutbox , how can we edit that ?
(2015-02-18, 11:29 AM)mujeebdgk Wrote: [ -> ]Thanks
its my personal Opinion if you add these instructions in first post too will be better
one more question , there is one Notice after title bar of shoutbox , how can we edit that ?
click in notice button to add notice...
![[Image: F2O2gOf.png]](https://camo.mybb.com/405af1fb3bcba3b7c5a32c72c6c28f8125662bfd/687474703a2f2f692e696d6775722e636f6d2f46324f32674f662e706e67)
how to change GMT of time ? because it is creating confusion

every user have it own GMT but it is showing its own

(2015-02-19, 03:28 PM)mujeebdgk Wrote: [ -> ]how to change GMT of time ? because it is creating confusion
every user have it own GMT but it is showing its own 
in acp has setting to change...
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?
(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 = 'xxxx.com:80,www.xxxx.com:80';
order is important... if you puted var origin = 'www.xxxx.com:80,xxxx.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 = 'xxxx.com:80,www.xxxx.com'; (incorrect)
var origin = 'xxxx.com,www.xxxx.com:80'; (incorrect)
Correct is var origin = 'xxxx.com:80,www.xxxx.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)
4 - In step 11 puted something different of miunashout (if you puted something differente never will work)
(2015-02-19, 05:09 PM)martec Wrote: [ -> ] (2015-02-19, 03:28 PM)mujeebdgk Wrote: [ -> ]how to change GMT of time ? because it is creating confusion
every user have it own GMT but it is showing its own 
in acp has setting to change...
i am sorry i didn't notice that , thanks
is it possible that every user can have their own timezone and it should be selected by users or by their profile because users are from different countries ???
(2015-02-20, 05:15 AM)mujeebdgk Wrote: [ -> ] (2015-02-19, 05:09 PM)martec Wrote: [ -> ] (2015-02-19, 03:28 PM)mujeebdgk Wrote: [ -> ]how to change GMT of time ? because it is creating confusion
every user have it own GMT but it is showing its own 
in acp has setting to change...
i am sorry i didn't notice that , thanks
is it possible that every user can have their own timezone and it should be selected by users or by their profile because users are from different countries ???
you can try edit codebutmiuna template
find:
zoneset = '{$mybb->settings['miunashout_zone']}',
replace:
zoneset = '{$mybb->user['timezone']}',