Page Index Toggle Pages: 1 ... 3 4 [5] 6  Send TopicPrint
Very Hot Topic (More than 25 Replies) Advanced Instant Message Box 2.0 (Read 39098 times)
gardener
Guest


Re: Advanced Instant Message Box 2.0
Reply #60 - Jan 11th, 2003 at 8:44pm
Print Post  
Great addition Smiley  One problem with my install though.  I get a javascript error when I try to 'recall' a sent message.  Any idea where to look to correct this?

Thanks

gardener
  
Back to top
 
IP Logged
 
astrogirl
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 7
Joined: Jul 20th, 2002
Re: Advanced Instant Message Box 2.0
Reply #61 - Jan 12th, 2003 at 3:03pm
Print Post  
Quote:
@astrogirl
have your board got problem as i've posted in #46 of this thread?
Kiss


Haven't noticed any of these problems from your #46 post. I don't have any other mods installed, will let you know how the little script change goes.


  
Back to top
 
IP Logged
 
Chewy
Guest


Re: Advanced Instant Message Box 2.0
Reply #62 - Jan 15th, 2003 at 5:05am
Print Post  
Where's the sound pack?
  
Back to top
 
IP Logged
 
LoonyPandora
God Member
*****
Offline


Daft Cow?

Posts: 1705
Location: London
Joined: Jun 27th, 2002
Gender: Male
Re: Advanced Instant Message Box 2.0
Reply #63 - Jan 30th, 2003 at 12:36am
Print Post  
Quote:
i've had a slight problem with this mod whick could be a bug... say for example i have 10 messages on my inbox and i am reading message #10 (the newest message on the inbox)... IF i click the "quote" button while i'm reading the newest message and just before that a newer message arrived, the message quoted will be the newer one, and NOT the one i was reading...

kinda hard to explain in english... hope that explanation made sense... Smiley


I've only got the last version of AIM installed,(Just reading the bug reports before I install this version Wink) This bug was present in the last version, but it was also much worse.

For instance, Say you open your Inbox, you have 1 new messages, but you just want to delete it. so you click the checkbox, and hit delete. However, if inbetween you open the page, and you hitting delete, someone sends you another IM, you will delete the NEW message, not the one you selected. This happens when you click the remove link when viewing messages aswell. It's happend 3-4 times to me now.

Just thought I'd mention it, in case you didn't know about it , it may have been fixed by now, I don't know Smiley
  

Apple Technical Support
Code
Select All
#!/usr/bin/perl --
($sig ='ddiissjjttuuffss ddaoouu ssffaee uuiijjtt
jj ssvvmmff auu qqffssmm ttmmaoohhjjoohh nnauuddiifftt')
=~y~b-v~a-z~s;
print $sig; 

Back to top
WWWICQ  
IP Logged
 
Nine LiveS
Junior Member
**
Offline



Posts: 67
Joined: Aug 14th, 2002
Re: Advanced Instant Message Box 2.0
Reply #64 - Jan 30th, 2003 at 1:05pm
Print Post  
lol... yup, that DOES sound much worse... nah, i did not install the previous version as i only had yabb running since april last year and have only stopped worrying about installing mods a few months ago... anyway, by then there was a beta version to this mod already out... Wink
  
Back to top
 
IP Logged
 
wjkingsnorth
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 15
Joined: Nov 12th, 2002
Gender: Female
Re: Advanced Instant Message Box 2.0
Reply #65 - Feb 1st, 2003 at 12:43am
Print Post  
I am fairly new to code. My icons are not showing up, just the little x box shows up. I think the problem is, my images are in the directory  /yabbimages instead of the default  /YaBBimages. If this is the case which file do I need to edit to point the MOD to the proper image?

Also I cant find the sound files anywhere on the web addresses I have seen concerning this mod. Anyone know where I can get them? If not anyone know which file I need to edit to point to other sound files I have found?
  
Back to top
WWW  
IP Logged
 
Jake
God Member
*****
Offline



Posts: 1265
Location: asia
Joined: Jun 22nd, 2002
Gender: Male
Re: Advanced Instant Message Box 2.0
Reply #66 - Feb 1st, 2003 at 3:38am
Print Post  
Quote:
@dOCda S Please correct me about missing xx..gif image on preview IM

I just replaced
Code
Select All
if( $FORM{'waction'} eq 'previewim' ) {
      $FORM{'waction'} = 'previewim';
      require "$sourcedir/Post.pl";
      &Preview;
} 

in sub IMPost2 of InstantMessage.pl with
Code
Select All
if( $FORM{'waction'} eq 'previewim' ) {
      $FORM{'waction'} = 'previewim';
      require "$sourcedir/Post.pl"; $FORM{'icon'} = "xx";
      &Preview;
} 




Try to correct this as above inyour Instantmessage.pl
It works  Wink
  

   
Back to top
 
IP Logged
 
LoonyPandora
God Member
*****
Offline


Daft Cow?

Posts: 1705
Location: London
Joined: Jun 27th, 2002
Gender: Male
Re: Advanced Instant Message Box 2.0
Reply #67 - Feb 1st, 2003 at 10:44am
Print Post  
wjkingsnorth wrote on Feb 1st, 2003 at 12:43am:
I am fairly new to code. My icons are not showing up, just the little x box shows up. I think the problem is, my images are in the directory  /yabbimages instead of the default  /YaBBimages. If this is the case which file do I need to edit to point the MOD to the proper image?

Also I cant find the sound files anywhere on the web addresses I have seen concerning this mod. Anyone know where I can get them? If not anyone know which file I need to edit to point to other sound files I have found?


Have you set your paths correctly in your admin centre? your yabbimages directory should point to your yabbimages, not YaBBimages. there should also be a URL in your admin centre for the path to your sounds directory. just make sure it is outside your CGI-BIN, otherwise they won't play.
Smiley
  

Apple Technical Support
Code
Select All
#!/usr/bin/perl --
($sig ='ddiissjjttuuffss ddaoouu ssffaee uuiijjtt
jj ssvvmmff auu qqffssmm ttmmaoohhjjoohh nnauuddiifftt')
=~y~b-v~a-z~s;
print $sig; 

Back to top
WWWICQ  
IP Logged
 
wjkingsnorth
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 15
Joined: Nov 12th, 2002
Gender: Female
Re: Advanced Instant Message Box 2.0
Reply #68 - Feb 1st, 2003 at 1:41pm
Print Post  
I got the images to work! Thanks a bunch. Can I use any sound files I want?? Or do I need the ones made for the Mod?

I am also having a problem with the Preferences part of the Mod. It gives me an error message when I click on it.

Can't open directory (../../YaBBImages/avatars)!
Please inform the administrator of this forum to fix the $facesdir setting immediately.

??? What do I need to fix?
  
Back to top
WWW  
IP Logged
 
LoonyPandora
God Member
*****
Offline


Daft Cow?

Posts: 1705
Location: London
Joined: Jun 27th, 2002
Gender: Male
Re: Advanced Instant Message Box 2.0
Reply #69 - Feb 1st, 2003 at 4:25pm
Print Post  
I don't know too much about this mod, but I would think that you can use any sound file, if it's in the correct format. Also, make the fielnames the same as the default sounds. and try it. I'm not sure though  Undecided

That error is because it can't find the directory for your avatars. There should be a folder inside your yabbimages folder called "avatars" you need to set the path to it in your admin centre. (It looks like you just need to change 'YaBBImages' to 'yabbimages' since your not using the default folder name Wink)

no probs  8)
  

Apple Technical Support
Code
Select All
#!/usr/bin/perl --
($sig ='ddiissjjttuuffss ddaoouu ssffaee uuiijjtt
jj ssvvmmff auu qqffssmm ttmmaoohhjjoohh nnauuddiifftt')
=~y~b-v~a-z~s;
print $sig; 

Back to top
WWWICQ  
IP Logged
 
wjkingsnorth
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 15
Joined: Nov 12th, 2002
Gender: Female
Re: Advanced Instant Message Box 2.0
Reply #70 - Feb 1st, 2003 at 7:12pm
Print Post  
Well I got that problem fixed too! Now I only need to know is what the default sound file names are. Does anyone know how many and their names?? I have several sound files that I can rename to what the mod is looking for.
  
Back to top
WWW  
IP Logged
 
LoonyPandora
God Member
*****
Offline


Daft Cow?

Posts: 1705
Location: London
Joined: Jun 27th, 2002
Gender: Male
Re: Advanced Instant Message Box 2.0
Reply #71 - Feb 1st, 2003 at 8:34pm
Print Post  
Aren't they in the zipfile with the mod? if not, try looking at all the posts in this thread, see if there is a link to where you can get them.

Otherwise, I can't help you. sorry  Undecided
  

Apple Technical Support
Code
Select All
#!/usr/bin/perl --
($sig ='ddiissjjttuuffss ddaoouu ssffaee uuiijjtt
jj ssvvmmff auu qqffssmm ttmmaoohhjjoohh nnauuddiifftt')
=~y~b-v~a-z~s;
print $sig; 

Back to top
WWWICQ  
IP Logged
 
Cina
New Member
*
Offline



Posts: 6
Joined: Jan 26th, 2003
Gender: Female
Re: Advanced Instant Message Box 2.0
Reply #72 - Feb 13th, 2003 at 7:25pm
Print Post  
Hello,

I have a small problem,

When I installed this mod its work just fine.
But when I want to set up a messages to new registred members, I can't save the messages I enter in the box. Everytime I do this I have to re-upload my setting.pl
What am I doing wrong here ??

I have Yabb 1 sp/1.1
With the readformsecurityfix2.mod installed

I hope you can help me

* Cina
  
Back to top
WWW  
IP Logged
 
Jake
God Member
*****
Offline



Posts: 1265
Location: asia
Joined: Jun 22nd, 2002
Gender: Male
Re: Advanced Instant Message Box 2.0
Reply #73 - Feb 14th, 2003 at 9:42am
Print Post  
Cina wrote on Feb 13th, 2003 at 7:25pm:
Hello,

I have a small problem,

When I installed this mod its work just fine.
But when I want to set up a messages to new registred members, I can't save the messages I enter in the box. Everytime I do this I have to re-upload my setting.pl
What am I doing wrong here ??

I have Yabb 1 sp/1.1
With the readformsecurityfix2.mod installed

I hope you can help me

* Cina


Sound like you miss some codes in AdminEdit.pl file
  

   
Back to top
 
IP Logged
 
Cina
New Member
*
Offline



Posts: 6
Joined: Jan 26th, 2003
Gender: Female
Re: Advanced Instant Message Box 2.0
Reply #74 - Feb 14th, 2003 at 4:33pm
Print Post  
Thank's a lot Jake Grin

I deleted the mod and re-installed it and it is working fine now  Cheesy
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1 ... 3 4 [5] 6 
Send TopicPrint