This MOD will add a flash chat page on your site. The nickname of the user is the login name and the name of the room is your site by default or anything you chose.
For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the latest version of this MOD. Downloading this MOD from other sites could cause malicious code to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered in our MOD-Database, located at: http://www.phpbb.com/mods/
To change default chat room (your site name as it is defined on the admin panel): open chat.php and set $irc_room = ''; to the needed name (i.e. $irc_room = 'My Chat Room';)
Fixed PHP 3 and 4 compatibility Fixed the split rooms bug when room name contains spaces To upgrade from version 1.0.0 just copy chat.php to chat.php
- First Stable release. Version 1.0.0 of a MOD is always it's first stable release.
Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
Find
// // That's all, Folks! // -------------------------------------------------
Before, Add
// // MOD: IRC Chat v1.0.0 // $lang['IRC_Chat'] = 'Chat'; // // MOD: -END- //
Find
<td align="center" valign="top" nowrap="nowrap"><span class="mainmenu">
In-line, Find
{L_MEMBERLIST}</a>
In-line, After, Add
<a href="{U_IRC_CHAT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_chat.gif" width="12" height="13" border="0" alt="{L_IRC_CHAT}" hspace="3" />{L_IRC_CHAT}</a>
Find
'L_USERNAME' => $lang['Username'],
Before, Add
// // MOD: IRC Chat v1.0.0 // 'L_IRC_CHAT' => $lang['IRC_Chat'], 'U_IRC_CHAT' => append_sid($phpbb_root_path . 'chat.' . $phpEx), // // MOD: -END- //