Chat box

bugs, ideas, suggestions, complaints (Forum and EBI)

Moderators: robot, noproblemo

Chat box

Postby hopless3 on Fri Sep 19, 2008 9:47 pm

How about a chat box - so when several of us are on we can chat directly to each other.
hopless3
board fly
 
Posts: 3859
Joined: Wed Jan 30, 2008 7:53 pm
Location: As long a the Police don't know I'm happy

Postby sbando on Fri Sep 19, 2008 10:05 pm

This is more complicated, must wait for Noproblemo and Frigo's input.
User avatar
sbando
Extinct
 
Posts: 9293
Joined: Tue Apr 10, 2007 8:25 pm
Location: Firenze, IT

Postby Frigo on Sat Sep 20, 2008 6:25 am

I have not seen anything like that with phpBB so far
Frigo
Admin
 
Posts: 8744
Joined: Wed Apr 04, 2007 4:46 pm

Postby sbando on Sat Sep 20, 2008 2:22 pm

Yeah, an external jave chat, do they still exist?

I'm so desperate that I'm saying this in public:

What about the eurobabeforum domain, a dedicated server for the forum, etc. Who do I have to shoot to see that happen?
User avatar
sbando
Extinct
 
Posts: 9293
Joined: Tue Apr 10, 2007 8:25 pm
Location: Firenze, IT

Postby paroxysmia on Sat Sep 20, 2008 3:10 pm

There is a ton of chat plugin for phpBB, vBulletin templates, MySpace and many websites etc...

Check these programs:

1/ Very simple shoutbox: Cbox with free & premium model (price not expensive but allows avatars).

2/ More powerfull chat: Chatango is a free chat for MySpace, eBay etc...

3/ Rich chat: AJAX Chat is an open source project.
AJAX Chat is a free and fully customizable open source web chat software implemented in JavaScript, PHP and MySQL. Sound support is implemented using Flash, Socket support using Flash on client-side and Ruby on server-side.

AJAX Chat integrates nicely with phpBB, MyBB, PunBB, SMF, vBulletin and other PHP community software.


Each chat has demo, try it ! For AJAX Chat, you can try admin:admin to test admin pannel too.
User avatar
paroxysmia
EBI's Illuminatus
 
Posts: 12579
Joined: Fri Aug 31, 2007 3:57 pm
Location: http://192.168.1.1/

Postby hopless3 on Sat Sep 20, 2008 4:51 pm

I just thought of it because yesterday when myself and Laura were efectively chating by typing replys to the same thread.

It just occured to me that a chat box at the top of the page would allow us to have quick chats like that without clutering up the BBS.

I dout it needs to be too complicated ie no need to post pics vids etc just a chat possibly allowing private chats but that seems like a luxuary item at the moment
hopless3
board fly
 
Posts: 3859
Joined: Wed Jan 30, 2008 7:53 pm
Location: As long a the Police don't know I'm happy

Postby paroxysmia on Sat Sep 20, 2008 4:54 pm

AJAX Chat allows private rooms, ignoring users, post images, smilies etc...
User avatar
paroxysmia
EBI's Illuminatus
 
Posts: 12579
Joined: Fri Aug 31, 2007 3:57 pm
Location: http://192.168.1.1/

Postby sbando on Sat Sep 20, 2008 5:11 pm

Yes, BUT YOU NEED SOME LAZY ASS PROGRAMMER TO DO IT!!

You think it's easy to have some work done on the Internet??? The Forum is not even up to date, hasn't been for 5 months. There's people pretending hefty payments for lousy jobs they haven't even done. AND I CAN'T HAVE A NICE ARROW IN THE SEARCH BOX TO REPLACE THE ONE I DID 10 YEARS AGO!!!!

How many changes to EBI did you see in the past 6 years? And THAT cost me thousands of Euros.
User avatar
sbando
Extinct
 
Posts: 9293
Joined: Tue Apr 10, 2007 8:25 pm
Location: Firenze, IT

Postby paroxysmia on Sat Sep 20, 2008 5:43 pm

I dunno who own EBI and the forum but there is a ton of websites, forums and blogs on the Internet with nice templates, chats, forums, features etc.

And these guys pay a server too, like here. And surely with less visibility and help.

About the forum, this template is old and has been, phpBB has upgrated it. Why don't do it also ?

FluxBB, vBulletin, IPB: free and sharewares exist instead of phpBB (100$ per year for one license).

Bandwith has a cost I know but if LeaseWeb is too expensive there are another server providers in Europe with great service (eg OVH in France & Europe) with discount offers.
User avatar
paroxysmia
EBI's Illuminatus
 
Posts: 12579
Joined: Fri Aug 31, 2007 3:57 pm
Location: http://192.168.1.1/

Postby hopless3 on Sat Sep 20, 2008 5:47 pm

deadsbando wrote:Yes, BUT YOU NEED SOME LAZY ASS PROGRAMMER TO DO IT!!



You can programe "lazy Asses" - so thats why alll the girls say yes to anal eventually. :lol:
hopless3
board fly
 
Posts: 3859
Joined: Wed Jan 30, 2008 7:53 pm
Location: As long a the Police don't know I'm happy

Postby sbando on Sat Sep 20, 2008 6:29 pm

Paro, it just doesn't happen, it's not that I cannot afford it.
LW is extremely cheap, especially compared to the American hosts that were mandatory before Bush.

I'm even ready to have a dedicated server for the Forum and I'm still keeping the old eurobabeforum domain name just in case.

All it takes is that Noproblemo decides to work on it. External people we've met so far are totally unreliable, as we've further experienced lately. More on that later.
User avatar
sbando
Extinct
 
Posts: 9293
Joined: Tue Apr 10, 2007 8:25 pm
Location: Firenze, IT

Postby Nihilist on Tue Sep 23, 2008 3:44 am

Just to give an overview of this from someone who develops PHP and creates websites. The bandwidth requirement of a chat room is generally far too high for a single server to cope with. A simple chat room is designed with no more than 30+ people in mind. If your going upwards of 100+ then your site will simply fall of the net.

You see, the way a chat server works (be it flash, or html refresh) is to hold the chat data in a text file somewhere on the server (or in the case of AJAX to store it in a temp database area). Now, consider that it retains a history of x amount of minutes. Each time someone types something it has to access this file (or database), read the last posted line, display that on the screen for that person.

Now this does not sound like a great task really for a webserver, but consider that this file could be upwards and exceeding a meg in size. Let alone that the server has to handle the forums, etc.

AJAX might work for a more robust and larger chat server but with the visitors amount of this site its highly unlikely that it would be able to cope. AJAX works asynchronously with the php being dormat while ajax javascript is running via the php's initially call thereby removing the need for refreshing and putting the strain on the SQL server rather than the PHP server.

To prove a point, find me a social networking site that has a public chat channel. There aint one because even sites like facebook do not have the technology to allow an open chat that everyone can join. Even google would crash if they tried this. So far there is no technology apart from client side chat programs (i.e. MSN, Yahoo, etc) that can handle a massive amount of chat traffic.

Steve
Nihilist
25 post? Our bitch!
 
Posts: 46
Joined: Thu Dec 27, 2007 3:32 am

Postby laura on Tue Sep 23, 2008 9:45 am

a chat room on this forum would be the icing on the cake for me. Quite often i wanna chat about porn in general or even just banter with a few users. Currently outside of pms( which are great btw) there is no such place unless, and as hopless has noted you just clog up another thread!
laura
Respected member
 
Posts: 832
Joined: Wed Aug 13, 2008 2:09 pm

Postby paroxysmia on Tue Sep 23, 2008 1:10 pm

Nihilist wrote:To prove a point, find me a social networking site that has a public chat channel. There aint one because even sites like facebook do not have the technology to allow an open chat that everyone can join. Even google would crash if they tried this. So far there is no technology apart from client side chat programs (i.e. MSN, Yahoo, etc) that can handle a massive amount of chat traffic.

Steve



It's blablabla....

Just look at the stats, the most ever user online on the board was 112. Do you think 100 users will chat together ? Clearly NOT !
Maybe just 10 or 20% in good days. Lots of users stay few minutes here, watch 2 or 3 threads and quit.

The last year I moderated a shoutbox Cbox on a website with 30k to 40k visitors per day and the chat worked perfectly.

And maybe you should remember the dead chat of Caramail, a very popular chat in 2000's. Internet was young and the chat had hundreds chaters without crashing.

The only thing to do is try a chat program and check the bandwith for the test.
User avatar
paroxysmia
EBI's Illuminatus
 
Posts: 12579
Joined: Fri Aug 31, 2007 3:57 pm
Location: http://192.168.1.1/


Return to Mr. Fix it

Who is online

Users browsing this forum: No registered users and 0 guests