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.