Jump to content

  • twitter
  • youtube
  • googleplus
  • facebook
  • rss
  • newsletter


(IM) IRC-Chat


  • Please log in to reply
19 replies to this topic

#1 m4rtin

m4rtin

    Advanced Member

  • Contributors
  • 58 posts
  • Gender:Male
  • Location:Hammerfest, Norway
  • IP.Board Version:IPB 2.3.x
  • First Name:Martin

Posted 19 May 2009 - 01:19 PM

File Name: (IM) IRC-Chat
File Submitter: m4rtin
File Submitted: 19 May 2009
File Updated: 04 Jun 2010
File Category: IP.Board Modifications

File Information
Resource Type: Application
Version: 1.0 (10000)
Compatibility: IP.Board 3.0 & IP.Board 3.1


Description
This application implements "PJIRC" in to your current forum layout. Most of the settings are controllable trough your ACP


Update 5. December '09: Fixed an issue with emoticons. Also added a way to strip out all non-alphanumeric characters.

Click here to download this file

#2 coolthud

coolthud

    Newbie

  • Members
  • Pip
  • 7 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:n/a

Posted 11 July 2009 - 10:22 AM

Hi,

Thanks for a great mod.

When I've installed the mod, pjirc is allowing people to access all channels, but I'd like to restrict it to just my channel.

In the chat.php file in admin\applications_addon\other\ircChat\modules_public\chat\chat.php I tried adding:

'pixx:authorizedjoinlist' => 'none+#mychannel',

...but its not worked, so Im guessig I've done something wrong, or edited the wrong file.

If theres any advice you can offer me on this, I'd be very grateful.

Once gain, thanks for a great mod! Its great!

Thanks,

Jason D.

#3 m4rtin

m4rtin

    Advanced Member

  • Contributors
  • 58 posts
  • Gender:Male
  • Location:Hammerfest, Norway
  • IP.Board Version:IPB 2.3.x
  • First Name:Martin

Posted 11 July 2009 - 10:59 AM

Not tested, but removed "pixx:" from the code.
'authorizedjoinlist' => 'none+#mychannel',


#4 coolthud

coolthud

    Newbie

  • Members
  • Pip
  • 7 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:n/a

Posted 12 July 2009 - 01:44 AM

Thats great! Thanks Martin!

#5 coolthud

coolthud

    Newbie

  • Members
  • Pip
  • 7 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:n/a

Posted 12 July 2009 - 02:40 AM

Sorry, its me again! lol.

The smilies are currently not showing for me in channel. The MyAPPS settings for IM Chat shows that they are active. Whenever someone used : ) or whatever (without the space) it shows as just a blank line.

In the chat.php I mentioned in my earlier post about restricted channels, I've tried adding the style:bitmapsmilies as true, but thats not helped either.

Any ideas on how I can fix this? Thanks.

Finally, do you have a paypal donation link or paypal account email, as I'd like to contribute towards development costs, or send you some money via PP as a thank you for creating this mod.

Thanks again! This is a great mod!

Jason D.

#6 coolthud

coolthud

    Newbie

  • Members
  • Pip
  • 7 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:n/a

Posted 12 July 2009 - 02:58 AM

Hi again, Ive sorted the smilies problem.

I got just one more question tho - sorry to be a pain. :)

One or two people have spaces in their message board usernames on my test board. When they log in obviously only the first part of their username is created in the nick. For example "Jason From England" becomes "Jason". Is there any way I can make the mod recognise spaces in member names and convert them to underscores? So, in the same example the member would join as Jason_From_England (up to whatever the nickname character limit is of course.)

Thanks again!

#7 m4rtin

m4rtin

    Advanced Member

  • Contributors
  • 58 posts
  • Gender:Male
  • Location:Hammerfest, Norway
  • IP.Board Version:IPB 2.3.x
  • First Name:Martin

Posted 12 July 2009 - 05:26 AM

Open ./admin/applications_addon/ircChat/modules_public/chat/chat.php
Find
$this->irc['prinick'] 	= $this->memberData['members_display_name'];
Replace with:
$this->irc['prinick'] 	= str_replace( array( ' ', '"', "'" ), '_', $this->memberData['members_display_name'] );

The char limit for nicknames are usually 9 characters, but that vary between networks.

View Postcoolthud, on Jul 12 2009, 10:40 AM, said:

Finally, do you have a paypal donation link or paypal account email, as I'd like to contribute towards development costs, or send you some money via PP as a thank you for creating this mod.

Thanks again! This is a great mod!

Jason D.
PayPal Link
Thank you :)

#8 coolthud

coolthud

    Newbie

  • Members
  • Pip
  • 7 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:n/a

Posted 12 July 2009 - 06:07 AM

Thanks Martin, that worked great.

I've sent a donation your way, Im afraid its only $10USD, but it should buy you a couple of beers if nothing else. :)

Thanks again!

#9 m4rtin

m4rtin

    Advanced Member

  • Contributors
  • 58 posts
  • Gender:Male
  • Location:Hammerfest, Norway
  • IP.Board Version:IPB 2.3.x
  • First Name:Martin

Posted 12 July 2009 - 06:35 AM

Thank you :)

Unfortunately, with the Norwegian taxes on everything, I'm lucky if I can buy one beer :P

#10 coolthud

coolthud

    Newbie

  • Members
  • Pip
  • 7 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:n/a

Posted 12 July 2009 - 07:04 AM

Booooooooo to taxes! :)

#11 m4rtin

m4rtin

    Advanced Member

  • Contributors
  • 58 posts
  • Gender:Male
  • Location:Hammerfest, Norway
  • IP.Board Version:IPB 2.3.x
  • First Name:Martin

Posted 12 July 2009 - 09:39 AM

Not really :P
We would die if it weren't for taxes.

#12 andyman

andyman

    Newbie

  • Members
  • Pip
  • 1 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:Andy

Posted 21 July 2009 - 11:42 AM

Thanks a lot. Great mod.

#13 m4rtin

m4rtin

    Advanced Member

  • Contributors
  • 58 posts
  • Gender:Male
  • Location:Hammerfest, Norway
  • IP.Board Version:IPB 2.3.x
  • First Name:Martin

Posted 21 July 2009 - 03:26 PM

Thank you :)

#14 blackcat

blackcat

    Member

  • Customers
  • 14 posts
  • IP.Board Version:N/A

Posted 22 March 2010 - 07:12 PM

Great mod. Fast and simple to install!!  Thank you.  Beer money sent. :D

#15 m4rtin

m4rtin

    Advanced Member

  • Contributors
  • 58 posts
  • Gender:Male
  • Location:Hammerfest, Norway
  • IP.Board Version:IPB 2.3.x
  • First Name:Martin

Posted 22 March 2010 - 08:27 PM

Thank you :)

#16 blackcat

blackcat

    Member

  • Customers
  • 14 posts
  • IP.Board Version:N/A

Posted 24 March 2010 - 01:30 PM

Where/How do you change the default colours?

#17 blackcat

blackcat

    Member

  • Customers
  • 14 posts
  • IP.Board Version:N/A

Posted 24 March 2010 - 05:34 PM

Never mind, got it all figured out.  The showchatapplet was throwing me off (i.e. it would work when called directly, but always default back to the blue colour).

#18 Jamesking56

Jamesking56

    Newbie

  • Members
  • Pip
  • 2 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:James

Posted 30 June 2010 - 12:16 PM

Hi,

I just installed your mod and now it says:

Quote

java error unable to open interface pixx:


#19 Whit3boy

Whit3boy

    Newbie

  • Members
  • Pip
  • 2 posts
  • IP.Board Version:IPB 3.1.x
  • First Name:Lucas

Posted 22 January 2011 - 03:10 PM

Hey i have ipb 3.1.4 and i downloaded this but its not working on my site :( it says i need to connect to a channel but how do i do that? can anyone help please?

Edited by Whit3boy, 22 January 2011 - 03:11 PM.


#20 bigworld

bigworld

    Newbie

  • Members
  • Pip
  • 4 posts
  • IP.Board Version:IPB 3.0.x
  • First Name:Matthewop

Posted 24 January 2011 - 12:51 AM

It is a great mod. thanks!!




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users