I was tinkering with it so I was likely the cause of any issues but it should auto-update now. If it doesn't load the shouts when the page loads, let me know what your browser is and if you are using any plugins. Make sure you white list stream.ffxiah.com if applicable.
Can't you just javascript a force update for the table?
Do you mean a force update button?
can't even manually update now
It should be working now.
Sorry about all the bugs with the page. I have been developing a stream server and the shout page is using it. Before, I just did polling to check for updates. It was reliable but created alot of requests to my PHP backends and at the same time doesn't let me push data to the client. The stream server is built using TornadIO, it's a python implementation of socket.io using Tornado. It takes advantage of websockets and xhr-polling(long polling), those are the only 2 transports I'm using atm. So basically when new shouts come in, I can push it immediately, instead of wait 60 seconds (or whatever the poll interval is set at). I'm still trying to figure out why it stops working after awhile. I'm thinking it's something to do with redis's publish/subscribe connection because the shouts load initially just fine.