Page 1 of 1

Re: Telefang Chat not working

Posted: Thu May 26, 2011 5:23 pm
by lapeirousia19(imported)
When I open Telefang Chat, it just leads me to about:blank..

Re: Telefang Chat not working

Posted: Thu May 26, 2011 6:11 pm
by Diamond(imported)
Oh !
I thought I was the only one getting that !

so it really doesn't work ?

Re: Telefang Chat not working

Posted: Thu May 26, 2011 6:22 pm
by Sanqui
You should get a window asking what application to open it with. IRC is an open protocol and there's many clients you can use (same like with browsers).

If you don't want to worry about downloading anything, try Mibbit. Server is BadnikNET, channel #telefang.

Re: Telefang Chat not working

Posted: Fri May 27, 2011 1:19 am
by Blaziken257
What browser are you all using? When I use Firefox, the link works just fine for me.

Re: Telefang Chat not working

Posted: Fri May 27, 2011 12:24 pm
by andwhyisit
If you go to the address directly without irc installed or without a working irc protocol wrapper it returns an error message. However it is trying to redirect twice via php to the url, which causes it to fail silently and display an empty white screen because the second redirect failed. This is because irc isn't a real protocol, it is interpreted by the browser and by the looks of it anything other than chatzilla in firefox will fail to respond. Unfortunately the forum's don't allow a direct link.

Firefox 3 btw.

Re: Telefang Chat not working

Posted: Fri May 27, 2011 12:42 pm
by Diamond(imported)
I'm using chrome, maybe that's why it doesn't work.

Re: Telefang Chat not working

Posted: Fri May 27, 2011 1:28 pm
by andwhyisit
Alright I have found a solution:

<?
header("Location: irc://irc.badnik.net/#telefang");
?>
<script type="text/javascript">
window.location='http://widget.mibbit.com/?settings=1f2a ... 23telefang';
</script>

http://andwhyisit.com/dnd/tfirc.php

It attempts to redirect to the irc address via php, but falls back on mibbit (javascript redirect) if the irc protocol is absent.

Sorry I kinda jumped in and out of irc several times while testing.