Jump to content


- - - - -

(IM) IRC-Chat


  • Please log in to reply
110 replies to this topic

#101 WeaponX

WeaponX

    n00b

  • Members
  • Pip
  • 1 posts
  • Real Name:Weapon X
  • IPB Version:v3.1.x

Posted 09 February 2011 - 06:44 PM

I am trying to configure the PJIRC client to connect to a non-standard, non-SSL port on the IRC server, and am having trouble getting it to work. Per the instructions from PJIRC FAQ, I have tried appending the line:

<param name="port" value="7001">

This has been applied in all four of the applet HTML files, but I still am unable to get the applet to connect. Is there an additional step that I am missing to get this working correctly?

#102 Edwardo

Edwardo

    Novice

  • Members
  • PipPip
  • 16 posts
  • Location:USA
  • Real Name:Eddie
  • IPB Version:v3.2.x

Posted 14 February 2011 - 02:11 AM

Is there any way to change the guest account names? Currently, any guest who accesses my IRC with this application obtains the nickname "Guest_123" where 123 are numbers randomly generated.

Is it related to this application or PJIRC?

Thanks in advance for your help!

#103 Martin

Martin

    But but, it's not only only!

  • Management
  • PipPipPipPipPipPipPipPipPipPip
  • 7,081 posts
  • Location:Hammerfest, Norway
  • Real Name:Martin Aronsen
  • IPB Version:v3.2.x
Contributor

Posted 14 February 2011 - 10:25 AM

View PostWeaponX, on 09 February 2011 - 06:44 PM, said:

I am trying to configure the PJIRC client to connect to a non-standard, non-SSL port on the IRC server, and am having trouble getting it to work. Per the instructions from PJIRC FAQ, I have tried appending the line:

<param name="port" value="7001">

This has been applied in all four of the applet HTML files, but I still am unable to get the applet to connect. Is there an additional step that I am missing to get this working correctly?
The applet files in the "pjirc" folder is not used. You have to add that line to the template "showChatApplet" in ACP > Look & Feel > [Select skin] > skin_ircChat.

View PostEdwardo, on 14 February 2011 - 02:11 AM, said:

Is there any way to change the guest account names? Currently, any guest who accesses my IRC with this application obtains the nickname "Guest_123" where 123 are numbers randomly generated.

Is it related to this application or PJIRC?

Thanks in advance for your help!
Per default it uses the standard guest prefix used by IP.Board. You can change that in ACP > System Setting > Forums tab > Topics, Posts and Polls > Guest names [prefix].
Or edit ./admin/applications_addon/other/ircChat/modules_public/chat/chat.php
Find:
if ( ! $this->memberData['member_id'])
			{
				$this->irc['prinick'] 	= $this->settings['guest_name_pre'] . rand ( 100, 999);
				$this->irc['altnick']	= $this->settings['guest_name_pre'] . rand ( 100, 999);
				$this->irc['userid']	= $this->irc['prinick'];
			}
Replace with:
			if ( ! $this->memberData['member_id'])
			{
				$this->settings['guest_name_pre'] = "Guest_prefix"; /* Change this */
				$this->irc['prinick'] 	= $this->settings['guest_name_pre'] . rand ( 100, 999);
				$this->irc['altnick']	= $this->settings['guest_name_pre'] . rand ( 100, 999);
				$this->irc['userid']	= $this->irc['prinick'];
			}


#104 Edwardo

Edwardo

    Novice

  • Members
  • PipPip
  • 16 posts
  • Location:USA
  • Real Name:Eddie
  • IPB Version:v3.2.x

Posted 14 February 2011 - 03:31 PM

View PostMartin, on 14 February 2011 - 10:25 AM, said:

View PostEdwardo, on 14 February 2011 - 02:11 AM, said:

Is there any way to change the guest account names? Currently, any guest who accesses my IRC with this application obtains the nickname "Guest_123" where 123 are numbers randomly generated.

Is it related to this application or PJIRC?

Thanks in advance for your help!
Per default it uses the standard guest prefix used by IP.Board. You can change that in ACP > System Setting > Forums tab > Topics, Posts and Polls > Guest names [prefix].
Or edit ./admin/applications_addon/other/ircChat/modules_public/chat/chat.php
Find:
if ( ! $this->memberData['member_id'])
			{
				$this->irc['prinick'] 	= $this->settings['guest_name_pre'] . rand ( 100, 999);
				$this->irc['altnick']	= $this->settings['guest_name_pre'] . rand ( 100, 999);
				$this->irc['userid']	= $this->irc['prinick'];
			}
Replace with:
			if ( ! $this->memberData['member_id'])
			{
				$this->settings['guest_name_pre'] = "Guest_prefix"; /* Change this */
				$this->irc['prinick'] 	= $this->settings['guest_name_pre'] . rand ( 100, 999);
				$this->irc['altnick']	= $this->settings['guest_name_pre'] . rand ( 100, 999);
				$this->irc['userid']	= $this->irc['prinick'];
			}
Got it! Thanks :)

#105 CheyneyC

CheyneyC

    n00b

  • Members
  • Pip
  • 1 posts
  • Real Name:Cheyney
  • IPB Version:v3.1.x

Posted 20 March 2011 - 02:06 PM

Startup error: java.lang.Error: Unable to load interface pixx : java.lang.SecurityException: trusted loader attempted to load sandboxed resource from http://rs-df.com/for...pjirc//pixx.jar

^ When loading up Chat app. Happening on another forum we know of that use this app too. Tested by multiple users.

#106 rduarte

rduarte

    Novice

  • Members
  • PipPip
  • 5 posts
  • Real Name:Ricardo Silva
  • IPB Version:N/A

Posted 11 April 2011 - 10:48 AM

View PostCheyneyC, on 20 March 2011 - 02:06 PM, said:

Startup error: java.lang.Error: Unable to load interface pixx : java.lang.SecurityException: trusted loader attempted to load sandboxed resource from http://rs-df.com/for...pjirc//pixx.jar

^ When loading up Chat app. Happening on another forum we know of that use this app too. Tested by multiple users.

I'm also getting this  :unsure:

#107 tread

tread

    n00b

  • Members
  • Pip
  • 2 posts
  • Location:Moscow. Russia.
  • Real Name:Kirill
  • IPB Version:v3.1.x

Posted 26 May 2011 - 01:15 PM

Hi,

read whole topic and saw that some ppl also have same problem as i do with nickname forbidden and force disconnect from some networks.

i'm talking about 1 particular and well known quakenet:

we've tryed to change those numbers to _  and even all in lowercase as system message asks for lowercase, but still no luck.

Any ideas on how to fix this particular problem?

thx.

#108 jigsaw1

jigsaw1

    n00b

  • Members
  • Pip
  • 1 posts
  • Real Name:sander
  • IPB Version:v3.1.x

Posted 27 June 2011 - 04:57 PM

nice work i installed it to my forum.

Edited by jigsaw1, 27 June 2011 - 05:03 PM.


#109 PoDo

PoDo

    Novice

  • Members
  • PipPip
  • 13 posts
  • Real Name:Paolo Boemi
  • IPB Version:v3.2.x

Posted 14 August 2011 - 10:44 PM

also works on 3.2.x ipboard ;) ... but There is an error with /admin/index.php?&app=ircChat&module=settings&section=settings   ----=>  admin/applications/core/modules_admin/tools/settings.php on line 1174
how can I fix this?

into 1174 there are this
			$start  = $this->html->settings_row_start_group( $r );

Edited by PoDo, 27 August 2011 - 02:28 AM.


#110 PoDo

PoDo

    Novice

  • Members
  • PipPip
  • 13 posts
  • Real Name:Paolo Boemi
  • IPB Version:v3.2.x

Posted 27 August 2011 - 02:00 AM

help me!

#111 Telephoner

Telephoner

    n00b

  • Members
  • Pip
  • 1 posts
  • Real Name:Bananiadis Giwrgos
  • IPB Version:v3.1.x

Posted 12 September 2011 - 08:20 PM

Is there a new version for IPB 3.2? Thanks!




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users