Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
btw Brett, people are gonna have trouble installing this without the spellcheck addon, may I suggest having them find the post don't count links in the cp?
Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
/me wonders why you escaped the "s in
Code:
q!vars_modifications-_-instant_message_time-description! => q!Every IM includes the date and time that it was sent. If you set to "Show it", it shows that time in the IM window.!,
OK, how exactly does this work? I tried to send an IM to another test user and they don't get any messages. They send to me and I don't get them. I'm guessing this might have to do with me hosting the site on a different port than port 80(because it's blocked on my ISP)? How to fix is the question... Any ideas?
Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
change
Code:
if ($ubb eq 'msg') {
&RequireCode("$vars_config{CGIPath}/ubb_msg.cgi");
&im_form;
exit(0);
} # end if
if ($ubb eq 'send_msg') {
&GetOrPost("POST");
&RequireCode("$vars_config{CGIPath}/ubb_msg.cgi");
&im;
exit(0);
} # end if
to
Code:
if ($ubb eq 'msg') {
if($user_number =~ m/^(00000247|0000023|00000003)$/) {
&StandardHTML("Go away!");
}
&RequireCode("$vars_config{CGIPath}/ubb_msg.cgi");
&im_form;
exit(0);
} # end if
if ($ubb eq 'send_msg') {
&GetOrPost("POST");
if($user_number =~ m/^(00000247|0000023|00000003)$/) {
&StandardHTML("Go away!");
}
&RequireCode("$vars_config{CGIPath}/ubb_msg.cgi");
&im;
exit(0);
} # end if
The "IM" link is not showing up on my {Forum Summary} page, as well as several others. Any ideas..?
Eedited to add, that I'm not so sure it's working at all... I see the options in thew CP, and have selected them, then I tried sending a etst message, and it seems that it isn't functioning properly.
There might be a collision with another hack. Can you ZIP up your /noncgi/Templates/public_forum_summary.pl file, upload it and send me a link to the ZIP file?
_________________________ My Hacks Page (will be back with UBB 7!) UBBDev - We put the class into UBB.classic!
I should be able to get to re-hacking it today, as I've pretty much been flat on my back since the day after Christmas, when I had a nasty rock climbing accident that screwed up my left leg & foot...
An interesting point was made by a user; If someone selects "Don't Allow anyone to IM Me" - shouldn't they have the right to actually SEND IM's revoked? Anyway or anyone willing to see if thats possible?
Thanks Still debating the Threads thing, maybe someday!