vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Chat Modifications - EzIRC 3.7.0 (https://vborg.vbsupport.ru/showthread.php?t=179651)

toonysnn 06-13-2008 03:14 PM

Quote:

Originally Posted by punk23 (Post 1547457)
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.

xoutlawz00x 06-15-2008 04:40 AM

Quote:

Originally Posted by toonysnn (Post 1548485)
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

xoutlawz00x 06-15-2008 05:17 AM

very nice release btw thanks alot

Brundlefly 06-15-2008 02:32 PM

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.

Brundlefly 06-15-2008 03:04 PM

Disregard my last, I figured it out.

toonysnn 06-16-2008 09:39 PM

Quote:

Originally Posted by xoutlawz00x (Post 1549648)
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

toonysnn 06-19-2008 09:26 PM

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.

MCAlexandre 06-23-2008 11:21 PM

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!

usertr 06-24-2008 11:54 PM

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?

RvG2 06-25-2008 03:09 AM

can we have the option to use the smileys from vbulletin? so no need to upload another sets of smileys...

Jeffler 06-25-2008 07:50 PM

How can I make it so guests can use it too?

espesso 06-26-2008 09:15 AM

nice hack :D

Yesterday we have installed version 1.06 an get a signatur failure from java...

Attachment 83029

thx for help
espesso

toonysnn 06-30-2008 04:46 PM

Sorry it's taking a while for 1.0.7, I've recently got into the paid requests and have been busy since. I will work on 1.0.7 as soon as I finish this $1000 job I've been hired for (Not posted on vB.org, contact over Yahoo! messenger)

Yeah, it'll be like the one on my site. Guests will be able to have the option to enable/disable in 1.0.7 too (Usergroup permissions)

Smilies will be automatically used from vBulletin if I can get them to work in EzIRC (I'll take code from the Admin CP's Smilies page if I have to)

espesso, I'm sorry but I cannot provide support from that image. It's in dutch or german and I do not speak or read either of those.

MCAlexandre 07-01-2008 08:34 AM

Quote:

Originally Posted by toonysnn (Post 1563201)
Sorry it's taking a while for 1.0.7, I've recently got into the paid requests and have been busy since. I will work on 1.0.7 as soon as I finish this $1000 job I've been hired for (Not posted on vB.org, contact over Yahoo! messenger)

Yeah, it'll be like the one on my site. Guests will be able to have the option to enable/disable in 1.0.7 too (Usergroup permissions)

Smilies will be automatically used from vBulletin if I can get them to work in EzIRC (I'll take code from the Admin CP's Smilies page if I have to)

espesso, I'm sorry but I cannot provide support from that image. It's in dutch or german and I do not speak or read either of those.

You didn't answer me. ;)

reesev 07-01-2008 12:48 PM

toonysnn your pm box will not allow me to send you pms and you were not in your irc.. im trying to reply to your pm to me :)

toonysnn 07-05-2008 08:12 PM

Quote:

Originally Posted by MCAlexandre (Post 1563793)
You didn't answer me. ;)

That code is not valid for EzIRC.

reesev: It should allow you now, accidentally deleted my email from the vBulletin members area. =/

BIF 07-11-2008 11:03 PM

Option to set alternate nick name ? Option to set auto identify to nickserv using forums password ? Option to set size of the client. ?

Just some ideas that i think would prove useful..

usertr 07-14-2008 03:32 PM

I'm attempting to install 1.0.6.

This may be a dumm question, but the readme.txt for 1.0.6 says "upload the folder provided." I'm assuming that refers to the file called "upload." I'm assuming further that the files and subfolders in "upload" and not the "upload" folder itself get uploaded: is that correct?

To where are they uploaded? I'm running vBadvanced and that vBa home page is in the root and not the forum. There's an index.php and an index.html in the upload folders, but I've already got an index.php file in both my root and in the forum folder. They both have stuff I wouldn't want to overwrite.

I've already imported the file 'product-ezirc.xml' via the Produce Manager.


toonysnn: I know you had this working on your site that you had with vbAdvanced. Any ideas? Also, I'm curious: how does it know to go to the irc service I'm using?

Edit: I've uploaded the irc.php file and the irc folder to the root where my vBa stuff sits. That now looks like the wrong place, because the irc.php file has this line in it:
Code:

require_once('./global.php');
Maybe the file and folder should be uploaded to the forum folder. I'll try it there.

Edit2:

I've moved the irc.php and the irc folder into the forum folder. Now I can get to chat from my forum home page, but I get HTTP 404 - File not found when I click the menu item on my vBadvanced home page.

Three things I'm considering:

1. Maybe I need to do something with the menu code in my navbar, maybe with a
Code:

if condition="THIS_SCRIPT
in the navbar to accommodate the vBA home page (I'm going to work on separate menus for the home page and the forum pages anyway)

2. Maybe I need to change what's in the include:
Code:

require_once('./global.php');
to an absolute address.

3. Maybe I need to add some variable that EZIRC uses (what are they?) to Portal Output Global Variables in my default setting for vBadvanced.



toonysnn: You had your chat running on a site that had a vBadvanced home page. Any ideas on any of this?
Also, I've got vbirc. How does it know to go there instead of some other service?

Jenkins 07-14-2008 08:21 PM

Just installed 1.06 on my forum. I'm getting "undefined string" everywhere, but everything functions correctly.

Attachment 84071

toonysnn 07-21-2008 12:12 AM

usertr: there is a vBadvanced option in order to fix links.
Jenkins: it sounds like english.pixx or whatever the file is, doesn't exist.

usertr 07-21-2008 01:26 AM

I'll look for that thing to fix links you mentioned to make it work from the vBa home page.

Right now I can access irc chat from the main forum page, but my big problem is that I'm going to the wrong irc. I've created a channel on vbirc and have my forum administrator's username set up as moderator on the irc channel, but when I get to chat from the menu after installing ezirc, it puts me on a different chat: it says irc.ircdotnet.net. Which values can I change to get it to point to vbirc. Should I be looking at that xml file?

Also, what happened to that great web site you had up?

toonysnn 07-21-2008 04:40 AM

vBulletin Options> EzIRC Settings> IRC Host
Change this to irc.vbirc.com

The population pretty much crashed. Switched to a clan forum. We also host gameservers and websites from our clan site. We're a pretty "multi-func" clan. :)

Tanpapasmurf 07-22-2008 12:36 AM

When i try to view the chat i get a box with a red X, I have java installed. What could be the issue?

Tanpapasmurf 07-22-2008 08:06 PM

Fixed my issue, it was something on my end

Jenkins 07-24-2008 05:23 PM

Quote:

Originally Posted by toonysnn (Post 1580254)
usertr: there is a vBadvanced option in order to fix links.
Jenkins: it sounds like english.pixx or whatever the file is, doesn't exist.

pixx.english.lng is in the /irc folder. here's a snapshot of my irc folder.

Attachment 84518

vmacedonia 07-28-2008 08:48 PM

How to change the color scheme of the client?

toonysnn 08-05-2008 08:46 AM

Sorry for delayed responses. Real life and school coming up is really annoying the crap outta me. :(

Jenkins: I've experimented with a IIS server (I now use Windows over Linux, but use a VPS) and noticed that you'll need to add the extension (.pixx) to IIS
More information: http://support.microsoft.com/kb/326965

vmacedonia: I do not know. I haven't messed with the client that much.

Guys, I'm very sorry for the late responses on 1.0.7 and such, but I am now coding the 1.0.7 on a live board (hired for work) and hopefully will have it done soon. I have so many things going on in real life, not to mention I should catch up with reality. :p

shachar47 08-06-2008 03:46 PM

thx man but the hebrew is reversed... what should i do to fix that?

tweakmonkey 08-17-2008 04:43 PM

Several of my forum users are having trouble using this applet. For about half the users it works fine, but for the other half...

Quote:

XEN Nickname is already in use.
-- *** No ident response
-- *** Ident broken or disabled, to continue to connect you must type /QUOTE PASS 11518
When the user types /QUOTE etc. it disconnects them.

Even if their username is standard alphanumeric (e.g. Dan123) Some users get:
Quote:

bad username, please disconnect and enter a correct username.
Some users are getting Ident issues, or it says their usernames are invalid:
Quote:

Your username is invalid.
Connect with your real username, in lowercase.
If your mail address were foo@bar.com, your username would be foo.
Error : Closing Link: OcTaNe91 by Dallas.TX.US.Undernet.org (USER: Bad username)
Disconnected from Dallas.TX.US.Undernet.org
I'm using Undernet as you can see. Is this the problem? These users were able to connect fine using standalone IRC clients like mIRC and Xchat. I've had about 20 users try so far and only 10-12 were able to connect using the java client. Thanks.

Abizaga 08-18-2008 04:39 AM

sorry for this stupid question but does this take up bandwidth? How much bandwidth?

Mum 08-18-2008 08:52 PM

Try www.mibbit.com - it gives you code to simply place where you like - very quick and easy :)

karlm 08-29-2008 12:40 AM

Nice job!

tomsch 09-04-2008 01:28 AM

is it possile to get ssl to work ???

Jedric 09-04-2008 11:29 AM

How would I go about changing

Quote:

<td class="vbmenu_control"><a href="./irc.php">Chat</a></td>
to

Quote:

<td class="navbar"><a href="./irc.php">Chat</a></td>
?

I have looked everywhere and I cannot find where to edit this.

evilzombie 09-08-2008 01:20 PM

This mod is useless on a forum without a fix for Erroneous Username. An issue that was pointed out here by MCAlexandre ........

https://vborg.vbsupport.ru/showpost....7&postcount=88

& seems to be being completely ignored by the Coder

toonysnn 09-11-2008 02:22 AM

Quote:

Originally Posted by evilzombie (Post 1617380)
This mod is useless on a forum without a fix for Erroneous Username. An issue that was pointed out here by MCAlexandre ........

https://vborg.vbsupport.ru/showpost....7&postcount=88

& seems to be being completely ignored by the Coder

Actually, this is in the new EzIRC. But I do not have time at the moment to release or finish the coding.
Please do not go around saying that the coders are ignoring something when they are not. Get your facts before running around and saying something.
Thank you.

toonysnn 09-11-2008 02:26 AM

------------------------------------------
Hello vBulletin.org,

I am only here to visit for the time being, I am having issues in real life with high school starting (third week, being a freshman) and with trying to keep up with my job requests.

I cannot guarantee this but I believe later this month I'll be able to release a new release of all my modifications and possibly some new ones.

I do have more important things rather than updating free modifications compared to my normal jobs.

I appreciate those of you who understand that being in school, managing your time as a administrator of several boards, and having jobs from online customers is very hard.

evilzombie 09-15-2008 09:45 AM

Quote:

Originally Posted by toonysnn (Post 1619584)
Actually, this is in the new EzIRC. But I do not have time at the moment to release or finish the coding.
Please do not go around saying that the coders are ignoring something when they are not. Get your facts before running around and saying something.
Thank you.

No the fact is you ignored the question as it was never answered or even acknowledged.

What you have going on IRL is irrelevant to that fact.

toonysnn 09-16-2008 10:34 PM

I did not ignore it. I've stated that it's fixed in 1.0.7 but I'm having issues with my time.
If you do not like this mod, then stay out of the conversation.
I may provide support for it, but I'm not starting arguments over if I did something or not.

Also, what I have going on irl does, it lets people know I don't have the time to code.

diviniti 09-24-2008 07:11 AM

Just curious if there is a way to add the amount of users in the chat, next to the link in navbar. Somewhat like AddonChat. I am thinking it is not possible due to it being IRC based, but doesn't hurt to ask right? :) Great mod too.


All times are GMT. The time now is 11:04 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01563 seconds
  • Memory Usage 1,841KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete