PDA

View Full Version : pjirc chatroom


gamelandz
05-21-2006, 07:34 PM
What is the best way to intergrate this chat into my 3.5.4 vbulletin?

-only recognize registered users

thanks,
gamelandz

Brad
05-21-2006, 07:46 PM
Users will still have to register with irc, and you can't prevent people that aren't registered on the forum from entering the channel if the server details get out.

However you can 'pick up' on their forum username, and it will be used when they join the irc if it's not already in use. You can also prevent unregisted users from using the java client.

A very simple integration follows, you can extend on this and make it look just like the one we use here if you want.

First create a new php file, call it 'chat.php' and upload it to the /forum/ directory. Here is the php code for that file:

<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'chat');

// pre-cache templates used by all actions
$globaltemplates = array(
'CHAT',
);

// require globals
require_once('./global.php');

if (!$vbulletin->userinfo['userid'])
{
print_no_permission();
}

// Strip username for irc
// clean username
$nonalnum = ereg_replace("[^ [:alnum:]]", "", $vbulletin->userinfo['username']);
$clname = preg_replace('#^[0-9]{1,}#', '', $nonalnum);
$name = ereg_replace(" ", "_", $clname);

// ###### Do nav bar
$navbits = array("chat.php?$session[sessionurl]" => 'Chat');
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');

eval('print_output("' . fetch_template('CHAT') . '");');
?>

Then create a new template call CHAT via the admin cp, using this code:

<applet codebase="/path/to/pjirc" code="IRCApplet.class" archive="irc.jar,pixx.jar" width=100% height=450>
<param codebase="/path/to/pjirc" name="CABINETS" value="irc.cab,securedirc.cab,pixx.cab">
<param name="nick" value="$name">
<param name="alternatenick" value="guest????">
<param name="fullname" value="mysite_java">
<param name="host" value="irc.yourirc.org">
<param name="gui" value="pixx">
<param name="quitmessage" value="User Quit">
<param name="asl" value="false">
<param name="style:bitmapsmileys" value="false">
<param name="style:floatingasl" value="false">
<param name="pixx:highlight" value="true">
<param name="pixx:highlightnick" value="true">
<param name="command1" value="/join #mychannel">
</applet>

That will integrate the applet, making it look like the rest of the forum is up to you. :)

gamelandz
05-22-2006, 07:09 PM
brad....i did the instructions....but then i just got a page with an "X" on it when i tried to view the chat...

rogersnm
05-22-2006, 07:24 PM
i would get flashchat if i were you it's easy intergration you just select vB in the install xD

and it's only $5

Raptor
05-25-2006, 03:03 PM
yeah thats useless advice if the user already has a chatroom on irc

rogersnm
05-25-2006, 03:15 PM
true ok