I'm using the latest version and my chat window simply states.

"Sorry, we can't find what you're looking for!
http://www.mibbit.com"

It was working previously so I'm assuming mibbit.com has changed something recently.

Comments

jgdovin’s picture

I have fixed this at least on my site. if you go to your sites/all/modules/mibbit_irc directory and open the file mibbit_irc.module

line # 132 looks like this...

  $output .= '<p><iframe width='. $width .' height='. $height .' scrolling=no border=0 src="http://embed.mibbit.com/e/index.html?server='. urlencode($server) .'&amp;channel=%23'. $channel .'&amp;nick='. $nick .'&amp;chatOutputShowTimes=false"></iframe></p>';

change that line out for this...

  $output .= '<p><iframe width='. $width .' height='. $height .' scrolling=no border=0 src="http://embed.mibbit.com/?server='. urlencode($server) .'&amp;channel=%23'. $channel .'&amp;nick='. $nick .'&amp;chatOutputShowTimes=false"></iframe></p>';

and it will work :) Lucky guess on my part I suppose ;-)

jgdovin’s picture

Status: Active » Patch (to be ported)
kmillecam’s picture

Assigned: Unassigned » kmillecam
Status: Patch (to be ported) » Needs review

Thanks for the heads up mitylite and the fix jgdovin.

This change has been committed to the dev branch.