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
vBXirc Details »»
vBXirc
Version: 2.5.2, by Zachery Zachery is offline
Developer Last Online: May 2017 Show Printable Version Email this Page

Version: 3.0.5 Rating:
Released: 01-03-2004 Last Update: 05-19-2005 Installs: 251
DB Changes
 
No support by the author.

PLEASE READ
This thread is only here for users who have already installed this hack, there is no longer a public version of vBXirc for vBulletin 3.0.x

There will be a 3.5.x version in the near future.

Sorry for any problems this may have caused.

Show Your Support

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

Comments
  #402  
Old 06-03-2004, 05:50 PM
|oR|Greg |oR|Greg is offline
 
Join Date: May 2003
Location: AMACNY.COM
Posts: 418
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I realized it's using a different navbar, so I altered the index.php to point to the sites main one, and recoded the navbar links with the

Code:
$vboptions[bburl]/
So.. now I'm still not seeing the breadcrumb stuff like the other pages on the site. How do I get it to show the page it's on, underneath, unlinked like the rest of them?
Reply With Quote
  #403  
Old 06-03-2004, 09:23 PM
|oR|Greg |oR|Greg is offline
 
Join Date: May 2003
Location: AMACNY.COM
Posts: 418
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

...ok I got the breadcrumbs all fixed up nice.

LAST QUESTION!! (that I hope someone will answer other than me)

How do I get it to show up in the Who's online. I added some lines to the functions_online.php, but it doesn't work, I added the following...

Code:
	case '/chat/index.php': 
       	 	$userinfo['activity'] = 'chat'; 
        	break;
Code:
		case 'Chat': 
        		$userinfo['action'] = construct_phrase($vbphrase['viewing_x'], 'In Chat');
			$userinfo['where'] = "<a href=\"/chat/index.php?$session[sessionurl]\">$vboptions[bbtitle] Chat</a>";
        		break;
Yet it still says Viewing Index even though a user isn't.
Reply With Quote
  #404  
Old 06-03-2004, 10:38 PM
Bounce's Avatar
Bounce Bounce is offline
 
Join Date: Mar 2004
Location: Edinburgh,Scotland
Posts: 919
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Got it workin - CHEERS Greg
Had to change the irc server as the one in the original file wasn't workin

Few other probs but they have been mentioned in previous posts so i'll check them out first

dont think anyone to my knowledge has mentioned the colours thou :squareeyed:

Can these be changed at all?? :ermm:
Reply With Quote
  #405  
Old 06-03-2004, 10:48 PM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by |oR|Greg
I fixed it...

Goto ACP>Styles & Templates > Style Manager > YOURSTYLE <<>> vbxirc templates >> vbxirc_index template

find:
Code:
<if condition="$bbuserinfo[userid] == 0">
<param name="nick" value="$vboptions[ircguest]">
<else />
<param name="nick" value="$chatname">
</if>
Replace with:
Code:
<!--
<if condition="$bbuserinfo[userid] == 0">
<param name="nick" value="$vboptions[ircguest]">
<else />
<param name="nick" value="$chatname">
</if>
//-->
<param name="nick" value="$vboptions[ircguest]">
NOW... because I couldn't find where the popup code variable for passing the "nick" parameter is, I disabled the popup option on my main site navbar.

Goto ACP>Styles & Templates > Style Manager > YOURSTYLE <<>> navigation / breadcrumb templates > navbar

find:
Code:
  <td id="chat" class="vbmenu_control"><a href="#chat">Chat</a> <script type="text/javascript"> vbmenu_register("chat"); </script></td>
Replace with:
Code:
<td id="Chat" class="vbmenu_control"><a href="$vboptions[bburl]/chat/index.php?$session[sessionurl]">Chat</a></td>
find:
Code:
<!-- chat links --> 
<div class="vbmenu_popup" id="chat_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">Chat</td> </tr> <tr> <td class="vbmenu_option"><a href="$vboptions[bburl]/chat/index.php?$session[sessionurl]">Chat</a></td> </tr> <tr> <td class="vbmenu_option"><a href="#" onClick="window.open('$vboptions[bburl]/chat/index.php?do=small','key','WIDTH=750,HEIGHT=500,scrollbars=no,left=50,top=50,screenX=50,screenY=50');return false">Chat(Popup)</a></td> </tr> </table> </div>
<!-- end chat links -->
Replace with:
Code:
<!-- chat links --> 
<!--
<div class="vbmenu_popup" id="chat_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">Chat</td> </tr> <tr> <td class="vbmenu_option"><a href="$vboptions[bburl]/chat/index.php?$session[sessionurl]">Chat</a></td> </tr> <tr> <td class="vbmenu_option"><a href="#" onClick="window.open('$vboptions[bburl]/chat/index.php?do=small','key','WIDTH=750,HEIGHT=500,scrollbars=no,left=50,top=50,screenX=50,screenY=50');return false">Chat(Popup)</a></td> </tr> </table> </div>
 //-->
<!-- end chat links -->
That's it, for an example, take a look at www.orderofronin.com
What was the point of this?
Reply With Quote
  #406  
Old 06-04-2004, 04:20 AM
lazserus's Avatar
lazserus lazserus is offline
 
Join Date: Mar 2004
Location: Planet Earth
Posts: 72
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I got all my issues fixed. Apparently all my problems were DALnet problems. Since my channel is relatively new, I just picked up and moved to a completely different network and everything works like a charm. To think, DALnet was a blessing when I moved from ChatNet, but turned out to be a complete pain.

/me gives DALnet the finger.

Thanks for all the hard work, Zachery - this is a beautiful hack.
Reply With Quote
  #407  
Old 06-04-2004, 03:10 PM
|oR|Greg |oR|Greg is offline
 
Join Date: May 2003
Location: AMACNY.COM
Posts: 418
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery
What was the point of this?
People that are on my site/forums trying to get to chat it wouldn't let them for whatever reason if they were logged into the forums. If they were logged out it worked fine, something with the prefix |oR| I imagine even though you can use that on gamesurge. Regardless, by forcing people to login using the default oRForumGuest?? nick they CAN get in, then just change the nick to whatever they want.

Also I didn't like the popup option, and I also changed the navbar to use the sites main one as well as the footer, and included the breadcrumb as well. Now I'm trying to figure out why it doesn't show up in the Who's Online.

I added

Code:
case '/chat/index.php': 
       	 	$userinfo['activity'] = 'chat'; 
        	break;
Code:
		case 'Chat': 
        		$userinfo['action'] = construct_phrase($vbphrase['viewing_x'], 'In Chat');
			$userinfo['where'] = "<a href=\"/chat/index.php?$session[sessionurl]\">$vboptions[bbtitle] Chat</a>";
        		break;
To the Functions_Online.php, yet it stilld doesn't work. Any thoughts?
Reply With Quote
  #408  
Old 06-04-2004, 03:18 PM
|oR|Greg |oR|Greg is offline
 
Join Date: May 2003
Location: AMACNY.COM
Posts: 418
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

FYI... to anyone that wants the breadcrumb to function, all you have to do is add in

Code:
// ## NAVBITS
$navbits = construct_navbits(array("index.php?$session[sessionurl]" => 'Chat'));
..to the chat\index.php anywhere in the file.

Then copy the chat\images\misc\navbits_finallink.gif file from the forums\images\misc location.

Viola!

For an example, www.OrderOfRonin.com\forums\chat
Reply With Quote
  #409  
Old 06-05-2004, 12:08 AM
Bounce's Avatar
Bounce Bounce is offline
 
Join Date: Mar 2004
Location: Edinburgh,Scotland
Posts: 919
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok..got this working althou it does not seem to be reconising who is and isn't an admin

If a non admin manages to enter the room first then he/she will be the admin for the room

how do I make it so that it will reconise from the forums who is and is not an admin?
Reply With Quote
  #410  
Old 06-05-2004, 05:09 AM
OGT OGT is offline
 
Join Date: Mar 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

those settings are done on your irc server. you will need to find a server that uses a nickserv and chanserv and go through those options to allow you to retake your room if theres not someone in it at all times.
Reply With Quote
  #411  
Old 06-08-2004, 06:11 PM
|oR|Greg |oR|Greg is offline
 
Join Date: May 2003
Location: AMACNY.COM
Posts: 418
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hIBEES it's a matter of registering on your IRC server with the same username as your forums I would think. Even then I don't know that it would work because you're required to AUTH on an IRC network, and using a chat applet won't let you AUTH that I'm aware of from a script.
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 09:21 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.05316 seconds
  • Memory Usage 2,321KB
  • 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
  • (12)bbcode_code
  • (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
  • (2)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