Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
VB eIRC chat intergration hack 1.0 Details »»
VB eIRC chat intergration hack 1.0
Version: 2.00, by andrew67 andrew67 is offline
Developer Last Online: Apr 2023 Show Printable Version Email this Page

Version: 3.0.7 Rating:
Released: 04-13-2002 Last Update: 05-02-2005 Installs: 138
 
No support by the author.

VERSION 2.0 - UPDATED FOR VB3.0.7
Now Even Easier To Install!!! - Enjoy

NOTE: VERSION 2 is for VBulleting 3.0.7, VERSION 1 is for 2.2.x
PLEASE MAKE SURE YOU DOWNLOAD THE CORRECT VERSION...

1 x new template
1 x file upload
1 x template edit (Optional I guess, you could put the link to your chatroom anywhere you like....)

P.S. You will need to add the templete to each style your site uses and edit to suit...

---------------------------------------------------------------------

This is a very very easy hack to install and must be one of the easiest and best free ways to add chat to your forums. This hack uses Eirc java applets to connect to World IRC servers. There is no need to sign and compile Eirc yourself or even host it or a irc server, simply follow these instructions and you will have FREE, full, IRC chat on your forums in under 2 minutes...

For a demo, checkout the chat running here at vbullettin.org ( https://vborg.vbsupport.ru/chat.php? ) as it uses the same java applets and basicly is the same as this hack...

Once you have installed the hack pop into #austech and say hello...
Thanks & Enjoy...

Although Version 1.0 for VB2.2.x is still working and also still available, I DO NOT offer support for it...

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #72  
Old 04-17-2002, 10:28 AM
Slynderdale Slynderdale is offline
 
Join Date: Mar 2002
Location: New York State
Posts: 576
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you could change every thing in the template with mine too, and you can edit how the whole page looks and set up with that one template, you could have it look like your normal forum page with a chat or make something completly different for it, all mine takes it a small php and 1 template to tun the whole thing and set every thing up, i also have a X bot too so the irc chat is always open and you dont have to worry about some one getting admin power
Reply With Quote
  #73  
Old 04-17-2002, 10:39 AM
andrew67 andrew67 is offline
 
Join Date: Dec 2001
Posts: 157
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well it doesn't do that the way you posted it, all the config is in the php file. My update will also have 1 php and 1 template instead of 2, a who's chatting now type deal (if I can work out the bugs) and the instructions on how to compile Eirc. for use on your own web/irc server.

Also no offence, but so what if you have X-bot, why make it sound like it is part of you hack? Its a bot in your chat room... What does that have to do with the hack? Anyone can have X-bot, its simply the channel server as I explained in a previous post.
Reply With Quote
  #74  
Old 04-17-2002, 10:54 AM
Slynderdale Slynderdale is offline
 
Join Date: Mar 2002
Location: New York State
Posts: 576
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry, i didnt want to get one any ones bad side, i just offered another way of doing it, the top one
PHP Code:
<?php
error_reporting
(7);

require(
'./global.php');


eval(
"dooutput("".gettemplate('forumchat')."");");

?>
is what you put in the php file the rest is a template
Reply With Quote
  #75  
Old 04-17-2002, 10:55 AM
mojotim mojotim is offline
 
Join Date: Oct 2001
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Dude, nice job. Very easy install. No chmod, no fuss, no muss!
Reply With Quote
  #76  
Old 04-17-2002, 11:01 AM
andrew67 andrew67 is offline
 
Join Date: Dec 2001
Posts: 157
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No need to aplogise, I was asking a question is all, things dont seem to come out right when I typing and I always come across like I'm angry or something, I not, Sorry if seemed that way.. I was just pointing why I had set thing up the way I had and what I updates I had install and simply asking a Q...
Reply With Quote
  #77  
Old 04-17-2002, 11:01 AM
Slynderdale Slynderdale is offline
 
Join Date: Mar 2002
Location: New York State
Posts: 576
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by mojotim
Dude, nice job. Very easy install. No chmod, no fuss, no muss!
Thank, i also seached for a hack that lets you show whos in the chat on the main page if any one wants to add it.

https://vborg.vbsupport.ru/showthrea...threadid=34065
Reply With Quote
  #78  
Old 04-17-2002, 12:10 PM
Slynderdale Slynderdale is offline
 
Join Date: Mar 2002
Location: New York State
Posts: 576
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok i added a little update to my version, if an account has spaces in it, it will only use the first part of the name not the whole name so i made a little fix that removes the space. If your useing my version change:

PHP Code:
<?php
error_reporting
(7);

require(
'./global.php');


eval(
"dooutput("".gettemplate('forumchat')."");");

?>
to:
PHP Code:
<?php
error_reporting
(7);

require(
'./global.php');

$chatusername=str_replace(" ","",$bbuserinfo[username]);

eval(
"dooutput("".gettemplate('forumchat')."");");

?>
now in the forumchat template find:

PHP Code:
$bbuserinfo[username
and replace it with:

PHP Code:
$chatusername 
it apears twice so change both and there, when a user goes to the chat it removes any spaces from there name
Reply With Quote
  #79  
Old 04-17-2002, 12:12 PM
Slynderdale Slynderdale is offline
 
Join Date: Mar 2002
Location: New York State
Posts: 576
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hope that helps some people out
Reply With Quote
  #80  
Old 04-17-2002, 01:07 PM
wooolF[RM]'s Avatar
wooolF[RM] wooolF[RM] is offline
 
Join Date: Jan 2002
Posts: 524
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

]
Quote:
Originally posted by Slynderdale
PHP Code:
$chatusername=str_replace(" ","",$bbuserinfo[username]); 
nice! Thanx for sharing
Reply With Quote
  #81  
Old 04-17-2002, 11:08 PM
Castel Castel is offline
 
Join Date: Oct 2001
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good job andrew, works like a charm. I used Slynderdale's chat.php method that way you don't have to modify online.php either since chat.php is already provided for.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:12 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04642 seconds
  • Memory Usage 2,318KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete