Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
EzIRC 3.7.0 Details »»
EzIRC 3.7.0
Version: 1.0.6, by toonysnn toonysnn is offline
Developer Last Online: Sep 2011 Show Printable Version Email this Page

Category: Chat Modifications - Version: 3.7.x Rating:
Released: 05-17-2008 Last Update: 05-17-2008 Installs: 172
Uses Plugins Auto-Templates
Additional Files  
No support by the author.

Hey everyone. I'm sure some of you have seen EzIRC and it's beta compatibility with 3.7.0, well this is the tested and completed version.

You can run all the same features of 3.6's EzIRC on this version.

[s]__________________________________[/s]


"EzIRC" Chat is a simple and easy-to-use IRC addon using pJIRC, it will advance on and on in the future.
I know this is a simple script, but it's a simple script to help others.

1.0.6
  • Release Notes (1.0.6)
    • Added enable/disable for navbar
    • Custom title for EzIRC (Rename in vBulletin Options > EzIRC options)
    • WOL Location problem fixed
  • Release Notes (1.0.5)
    • Compatibility updated for 3.7.x
Future Features
  • None
Added Features
  • Rules below IRC - in 1.0.1
  • Enable/Disable Rules - in 1.0.1
  • Enable/Disable IRC - in 1.0.1
  • Hide link in navbar when disabled - in 1.0.1
  • Ident Server - in 1.0.2
Known Bugs
  • None
Known Errors
  • Username issues. Probably will be fixed later next week.
Just some IRC Servers...

Show Your Support

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

Comments
  #82  
Old 06-13-2008, 03:14 PM
toonysnn toonysnn is offline
 
Join Date: Sep 2006
Location: Texas
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by punk23 View Post
Great Plugin but we have a slight problem. Some of our users have spaces in their usernames on the forum, when they connect to the irc server it boots them. Is there anyway to have spaces in usernames translated to dashes or underscores?
This is applied as a fix in 1.0.7.
I will work on 1.0.7 today and hopefully get to release it by tonight.

Release Notes: All users are, by default, not allowed to use EzIRC. You'll have to go into every usergroup, and at the bottom, allow the group to access EzIRC.
Reply With Quote
  #83  
Old 06-15-2008, 04:40 AM
xoutlawz00x xoutlawz00x is offline
 
Join Date: May 2008
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by toonysnn View Post
This is applied as a fix in 1.0.7.
I will work on 1.0.7 today and hopefully get to release it by tonight.

Release Notes: All users are, by default, not allowed to use EzIRC. You'll have to go into every usergroup, and at the bottom, allow the group to access EzIRC.
Is this for 1.07 or 1.06 because i dont see if for 1.06 and wondering where i can find it
Reply With Quote
  #84  
Old 06-15-2008, 05:17 AM
xoutlawz00x xoutlawz00x is offline
 
Join Date: May 2008
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very nice release btw thanks alot
Reply With Quote
  #85  
Old 06-15-2008, 02:32 PM
Brundlefly Brundlefly is offline
 
Join Date: Oct 2007
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm intrested in the usernames appearing like this;

Brundlefly (Site)

Since none of my website users have the same name, there should be no duplication. Is this possible.

I do appreciate your work on this.

Thanks in advance.
Reply With Quote
  #86  
Old 06-15-2008, 03:04 PM
Brundlefly Brundlefly is offline
 
Join Date: Oct 2007
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Disregard my last, I figured it out.
Reply With Quote
  #87  
Old 06-16-2008, 09:39 PM
toonysnn toonysnn is offline
 
Join Date: Sep 2006
Location: Texas
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by xoutlawz00x View Post
Is this for 1.07 or 1.06 because i dont see if for 1.06 and wondering where i can find it
1.0.7
Reply With Quote
  #88  
Old 06-19-2008, 09:26 PM
toonysnn toonysnn is offline
 
Join Date: Sep 2006
Location: Texas
Posts: 511
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay everyone, here's just a status on 1.0.7. It's been scrapped. I'm just recreating EzIRC cause the code has gotten a tad messy and could be rewritten.

I'll post a status update later next week.
Reply With Quote
  #89  
Old 06-23-2008, 11:21 PM
MCAlexandre MCAlexandre is offline
 
Join Date: Oct 2007
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have a problem.

As I use this modification, I can't acess some pages with the configurations, but they are not also in the Configurations Page in the ACP.

My app returns an error when users with a "!", "." or something in the nickname enter. The error says the nickname is erroneous because it has illegal carachters. After a conversation with my IRC provider, we found the solution:

Quote:
What you need to do is strip . and !'s from the nick, IRC cannot support usernames with .'s because thats used in server names, and it cant allow !, because thats used as the seperator between the nick and the host.

If using PHP, you can try the following code on the nick before it is passed to PJIRC.

This code assumes the users nick is stored in the variable "$nick", and replaces .! with underscores:

Code:
$nick = str_replace(array('!','.'), '_', $nick);
Could you help? Where am I supposed to insert this?

Thanks and congratulations for the excelent mod!
Reply With Quote
  #90  
Old 06-24-2008, 11:54 PM
usertr usertr is offline
 
Join Date: May 2007
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the update.

Quote:
Okay everyone, here's just a status on 1.0.7. It's been scrapped. I'm just recreating EzIRC cause the code has gotten a tad messy and could be rewritten.

I'll post a status update later next week.
Do you envision that the new EzIRC will work and look pretty much like the one you had on your site?

Will the new one have some accommodation for forum user names with embedded spaces? (Some sort of workaround that would replace spaces with something like underlines or hyphens might work. The space things seems like a daunting obstacle. I'm sort of guessing that working on that issue is what convinced you to scrap it and start over.)

Is there any chance of its working with 3.6.10 for those of us not quite ready to enter the 3.7 bugland?

Also, can we go ahead and install 1.0.6 in the mean time, just to get oriented to it?
Reply With Quote
  #91  
Old 06-25-2008, 03:09 AM
RvG2 RvG2 is offline
 
Join Date: Jan 2007
Posts: 457
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

can we have the option to use the smileys from vbulletin? so no need to upload another sets of smileys...
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 08:41 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.08111 seconds
  • Memory Usage 2,303KB
  • 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
  • (1)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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