|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
will try as soon as pavioni is working again 
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
Well your site is working, but I'm getting a corrupt zip
|
|
|
|
Joined: May 2001
Posts: 1,042 Likes: 7
Moderator
|
Moderator
Joined: May 2001
Posts: 1,042 Likes: 7 |
Oops, ascii mode bad. Fixed.
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
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?
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
psssttt. vars_modifications::instant_message_refresh You didn't give us the declaration of that, ie instant_message_perms => { type => "radio", values => [qw(none admins mods all)], default => q!all!, req => 0, final_code => sub { return "FIXME"; }, },
|
|
|
|
Joined: May 2001
Posts: 1,042 Likes: 7
Moderator
|
Moderator
Joined: May 2001
Posts: 1,042 Likes: 7 |
heh, too early for meh. ZIP updated again, changes only to cp2_vars.cgi.
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
/me wonders why you escaped the "s in 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.!,
|
|
|
|
Joined: May 2001
Posts: 1,042 Likes: 7
Moderator
|
Moderator
Joined: May 2001
Posts: 1,042 Likes: 7 |
What were the errors in your error log?
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
premature end of header scripts, uninitialized value, use of useless something.  I really enjoyed the last one 
|
|
|
|
Joined: Jan 2003
Posts: 118
Member
|
Member
Joined: Jan 2003
Posts: 118 |
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?
-GATOR
"Pain is temporary, Pride is forever"
|
|
|
|
Joined: May 2001
Posts: 1,042 Likes: 7
Moderator
|
Moderator
Joined: May 2001
Posts: 1,042 Likes: 7 |
Looks like your ubb_checkmsg.cgi is erroring out.
on the topline of ubb_checkmsg.cgi
change it to just:
#!/usr/bin/perl
|
|
|
|
Joined: Jan 2003
Posts: 118
Member
|
Member
Joined: Jan 2003
Posts: 118 |
Damn, you guys are so smart! I bow to your scripting wisdom...
-GATOR
"Pain is temporary, Pride is forever"
|
|
|
|
Joined: Apr 2003
Posts: 57
Member
|
Member
Joined: Apr 2003
Posts: 57 |
Nice hack brett .. It's realy a pleasure to have it back ... I had a problem with ubb_checkmsg IMs still appearing to me until I refresh the page <<< the same problem that I had on 6.5 === Ian .. ur file is not workin 
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
What would be the proceedure to block certain user(s) from being able to use IM?
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
change 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 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
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
 Thank you Ian 
|
|
|
|
Joined: Jan 2000
Posts: 5,833 Likes: 20
UBBDev / UBBWiki Owner Time Lord
|
UBBDev / UBBWiki Owner Time Lord
Joined: Jan 2000
Posts: 5,833 Likes: 20 |
Originally posted by AllenAyres:
What would be the proceedure to block certain user(s) from being able to use IM?
Wouldn't a better one being only allowing specific users? hehe
|
|
|
|
Joined: Nov 2002
Posts: 188
Member
|
Member
Joined: Nov 2002
Posts: 188 |
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. 
|
|
|
|
Joined: Jan 2000
Posts: 5,833 Likes: 20
UBBDev / UBBWiki Owner Time Lord
|
UBBDev / UBBWiki Owner Time Lord
Joined: Jan 2000
Posts: 5,833 Likes: 20 |
If the link in the header isn't showing up then you need to re-do the public_common.pl steps (As the header links are contained in that file).
|
|
|
|
Joined: Nov 2002
Posts: 188
Member
|
Member
Joined: Nov 2002
Posts: 188 |
The strange thing is, they DO show up on several pages... Things that make ya go hmmmmmmmmmmmmmm! If you would be so kind as to take a look, my URL is: http://www.gr-outdoors.com/index-forums.htm
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
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?
|
|
|
|
Joined: Nov 2002
Posts: 188
Member
|
Member
Joined: Nov 2002
Posts: 188 |
|
|
|
|
Joined: Nov 2002
Posts: 188
Member
|
Member
Joined: Nov 2002
Posts: 188 |
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
odd, it only works on some pages There's other issues as well, when you click into a forum, the breadcrumb link back to the forum index isn't there, just the category.
|
|
|
|
Joined: Nov 2002
Posts: 188
Member
|
Member
Joined: Nov 2002
Posts: 188 |
Bizarre ... I would love to have this mod, but I guess it wasn't to be.
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
It should work on your forum... I'd check your install of it.
|
|
|
|
Joined: Nov 2002
Posts: 188
Member
|
Member
Joined: Nov 2002
Posts: 188 |
I've put the original files back, so I'll attempt a re-hack of it to see if I made a mistake somewhere along the line...
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
 Double-check your work in public_common.pl mostly...
|
|
|
|
Joined: Nov 2002
Posts: 188
Member
|
Member
Joined: Nov 2002
Posts: 188 |
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...
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
ouch... glad you are doing ok'ish 
|
|
|
|
Joined: Dec 2003
Posts: 49
User
|
User
Joined: Dec 2003
Posts: 49 |
Is there a way to allow specific users a different Maximum # Of Files instead of the group option?
For example, I want member 00000387 to be able to upload 10 files rather than his group's 5 files max.
|
|
|
|
Joined: Dec 2003
Posts: 49
User
|
User
Joined: Dec 2003
Posts: 49 |
^ Please ignore the above. Posted in wrong thread.
|
|
|
|
Joined: May 2005
Posts: 12
Junior Member
|
Junior Member
Joined: May 2005
Posts: 12 |
So does this mod work?
Thanks,
- Bill
|
|
|
|
Joined: Jan 2000
Posts: 5,833 Likes: 20
UBBDev / UBBWiki Owner Time Lord
|
UBBDev / UBBWiki Owner Time Lord
Joined: Jan 2000
Posts: 5,833 Likes: 20 |
It worked fine for me in 6.7.3 when i was running it last year...
|
|
|
|
Joined: Aug 2000
Posts: 178
Member
|
Member
Joined: Aug 2000
Posts: 178 |
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!
|
|
|
Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.
Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
|
|
Posts: 417
Joined: November 2001
|
|
Forums63
Topics37,575
Posts293,930
Members13,823
|
Most Online6,139 Sep 21st, 2024
|
|
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
|
|
|
|