Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases

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
  #62  
Old 01-13-2004, 02:21 PM
nighteyes's Avatar
nighteyes nighteyes is offline
 
Join Date: Oct 2001
Posts: 130
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Faranth
copy your $header and $navbar templates as they are into vbxirc_header and vbxirc_navbar

HOWEVER javascript dropdown menus WILL NOT WORK with the java applet there
First of all this is an awesome hack. But why doesn't it automatically pull our header and footer etc. without needing to do it separately?
Reply With Quote
  #63  
Old 01-13-2004, 03:27 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 MrNase
thanks faranth

I'll give it a try

it's working for me but i have some problems. The best would be if you check it out on yourself
www.sportboard.de/chat

the popup-version does very well but the normal view seems to have some problems with the css file and with the gfx.
the only thing i can think of is that your storing CSS as files, otherwise it should work perfectly. howerver i did check out that link and the only thing broken were an iamge or two which is just a path issue
Reply With Quote
  #64  
Old 01-15-2004, 05:41 AM
Casparian Casparian is offline
 
Join Date: Dec 2003
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there any way to have it join more than one room at a time when you log in to the server? We have two rooms, one for silly chat and one for serious discussion (usually moderated with a set topic for a few hours a night).

Also, how about being able to resize the java window from the Admin CP? That'd be useful - some people have complained it's a bit too small.

With this chat applet, is it possible to change the display font size and colour? Again, some people have said the default is hard to read on their monitor, and it'd be great if either it could use one set by Admin, or if the users could change it themselves

The only thing I really think this addon needs is the ability to use the standard header and footer templates...

Great work!
Reply With Quote
  #65  
Old 01-15-2004, 05:44 AM
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 Casparian
Is there any way to have it join more than one room at a time when you log in to the server? We have two rooms, one for silly chat and one for serious discussion (usually moderated with a set topic for a few hours a night).

Also, how about being able to resize the java window from the Admin CP? That'd be useful - some people have complained it's a bit too small.

With this chat applet, is it possible to change the display font size and colour? Again, some people have said the default is hard to read on their monitor, and it'd be great if either it could use one set by Admin, or if the users could change it themselves

The only thing I really think this addon needs is the ability to use the standard header and footer templates...

Great work!
you can use the standard header and footer tempaltes, it used to, but ppl complained about having to modify them to work correctly

just copy your header and footer templates into them and they should work fine

Header > vbxirc_header
footer > vbixrc_footer

if the java window is too small you can change it in the templates, altho i will look into adding it into the ACP for the next release as it is a good idea

yes see in the template where it says command1 copy that put2 and change /join $vboptions[ircroom] to /join #roomname
Reply With Quote
  #66  
Old 01-16-2004, 04:31 PM
ekool ekool is offline
 
Join Date: Jun 2003
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there any way to either use the nickname guest_XXX or modify a nickname so it does NOT begin with a number? Some of my members cannot log in since their nickname beings with a number, and the IRC server rejects it.
Reply With Quote
  #67  
Old 01-16-2004, 04:56 PM
ekool ekool is offline
 
Join Date: Jun 2003
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In a reply to myself, I found the following:

in chat/index.php

Line 48:

Code:
$nonalnum = ereg_replace("[^ [:alnum:]]", "", $bbuserinfo[username]);
Change to say the following:

Code:
$nonalnum = preg_replace("/^(\d.*)/","_\$1", $bbuserinfo[username]);
That should cause the forum to add an underscore to the front of the nickname if it begins with a digit, and leave it unmolested if it does not.
Reply With Quote
  #68  
Old 01-16-2004, 05:59 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 ekool
In a reply to myself, I found the following:

in chat/index.php

Line 48:

Code:
$nonalnum = ereg_replace("[^ [:alnum:]]", "", $bbuserinfo[username]);
Change to say the following:

Code:
$nonalnum = preg_replace("/^(\d.*)/","_\$1", $bbuserinfo[username]);
That should cause the forum to add an underscore to the front of the nickname if it begins with a digit, and leave it unmolested if it does not.
ill take a look into adding somthing like this in the next version
Reply With Quote
  #69  
Old 01-17-2004, 02:36 AM
Halo_DDF Halo_DDF is offline
 
Join Date: Jan 2004
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It gives me a error that says

Warning: main(./global.php): failed to open stream: No such file or directory in /home/king/public_html/chat/index.php on line 39

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/king/public_html/chat/index.php on line 39


Here is line 39 in the file
PHP Code:
// ## Grabs global.php ##
require_once("./global.php"); 
If you could help that would be great. Sorry if this question was already asked
Reply With Quote
  #70  
Old 01-17-2004, 08:32 AM
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 Halo_DDF
It gives me a error that says

Warning: main(./global.php): failed to open stream: No such file or directory in /home/king/public_html/chat/index.php on line 39

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/king/public_html/chat/index.php on line 39


Here is line 39 in the file
PHP Code:
// ## Grabs global.php ##
require_once("./global.php"); 
If you could help that would be great. Sorry if this question was already asked
did you open the read me?
Reply With Quote
  #71  
Old 01-17-2004, 12:58 PM
Halo_DDF Halo_DDF is offline
 
Join Date: Jan 2004
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Faranth
did you open the read me?

Yes? Was that a trick question or soming. BTW fixed it
Reply With Quote
Reply

Thread Tools

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 07:57 AM.


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.06048 seconds
  • Memory Usage 2,313KB
  • 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
  • (4)bbcode_code
  • (2)bbcode_php
  • (6)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