Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Beta Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: , by Konqueror Konqueror is offline
Developer Last Online: Dec 2002 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 12-20-2001 Last Update: Never Installs: 4
Is in Beta Stage  
No support by the author.

"Ultimate Ignore" v0.91 Beta

This hack was requested at https://vborg.vbsupport.ru/showthrea...threadid=33294
This hack allows admins to set a user to "ultimative ignore" mode. This means that no-one except
admins and the user himself can see any posts or threads posted by that user.

I lost the instructions, so if anyone still got them let me know please.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 12-21-2001, 12:23 PM
Radon3k's Avatar
Radon3k Radon3k is offline
 
Join Date: Nov 2001
Posts: 245
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey, thanks a lot! Didn't think this was coming for a bit, but glad it's here, thx!
Reply With Quote
  #3  
Old 12-21-2001, 01:22 PM
heretic's Avatar
heretic heretic is offline
 
Join Date: Nov 2001
Posts: 285
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

wow!

going to install it now, one thing I was thinking of, talking about the logout option, does this use usergroups, to where you can have all but guests and the user ignored, so that way if the person logs out, they won't notice the ignore?

I think this was mentioned in the other thread, just wanted to repeat it here
Reply With Quote
  #4  
Old 12-21-2001, 01:35 PM
Konqueror Konqueror is offline
 
Join Date: Dec 2001
Posts: 73
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yep, just add/remove the usergroups from the following lines:
PHP Code:
if ($uignore[uignore] == '0' || ($uignore[uignore] == '1' && ($bbuserinfo['usergroupid'] == || $bbuserinfo['username'] == $post['username']))) { 
PHP Code:
if ($uignore[uignore] == '0' || ($uignore[uignore] == '1' && ($bbuserinfo['usergroupid'] == || $bbuserinfo['username'] == $thread['postusername']))) { 
So if you want the ignored user to be shown to guests just change the previous 2 lines to:
PHP Code:
if ($uignore[uignore] == '0' || ($uignore[uignore] == '1' && ($bbuserinfo['usergroupid'] == || $bbuserinfo['usergroupid'] == || $bbuserinfo['username'] == $post['username']))) { 
PHP Code:
if ($uignore[uignore] == '0' || ($uignore[uignore] == '1' && ($bbuserinfo['usergroupid'] == || $bbuserinfo['usergroupid'] == || $bbuserinfo['username'] == $thread['postusername']))) { 

Reply With Quote
  #5  
Old 12-21-2001, 01:44 PM
heretic's Avatar
heretic heretic is offline
 
Join Date: Nov 2001
Posts: 285
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

getting a parse error for functions.php:

Parse error: parse error in /home/hosted/warpstorm/public_html/forum/admin/functions.php on line 2271

Fatal error: Call to undefined function: getuserinfo() in /home/hosted/warpstorm/public_html/forum/admin/sessions.php on line 327

I'll try to reinstall.. brb
Reply With Quote
  #6  
Old 12-21-2001, 02:00 PM
heretic's Avatar
heretic heretic is offline
 
Join Date: Nov 2001
Posts: 285
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

here's my line 327 in sessions, but this just calls the userid

PHP Code:
// get pertinient user info
  
if (!isset($bbuserinfo) or $bbuserinfo['userid']!=$session['userid']) {
   
$bbuserinfo=getuserinfo($session['userid']);                           //this is line 327
    
$bbuserinfo['realstyleid'] = $bbuserinfo['styleid'];
  } 
Reply With Quote
  #7  
Old 12-21-2001, 02:25 PM
Konqueror Konqueror is offline
 
Join Date: Dec 2001
Posts: 73
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The problem is the "Parse error: parse error in /home/hosted/warpstorm/public_html/forum/admin/functions.php on line 2271"
As soon as that one is fixed, everything else will be fine again as well. My admin/functions.php doesn't even have that many lines... Sounds like there is a } missing somewhere... What have you got at that line?
Reply With Quote
  #8  
Old 12-21-2001, 02:32 PM
Reeve of shinra's Avatar
Reeve of shinra Reeve of shinra is offline
 
Join Date: Oct 2001
Location: NYC
Posts: 1,896
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am rubbing my hands in aniticipation ... I plan to try this out as soon as I get home tonight. =)
Reply With Quote
  #9  
Old 12-21-2001, 03:52 PM
Lesane's Avatar
Lesane Lesane is offline
 
Join Date: Oct 2001
Location: The Netherlands
Posts: 1,149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Wow, sounds great. I gonna test it 2night. Thanks.
Reply With Quote
  #10  
Old 12-21-2001, 04:05 PM
heretic's Avatar
heretic heretic is offline
 
Join Date: Nov 2001
Posts: 285
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[QUOTE]Originally posted by Konqueror
The problem is the "Parse error: parse error in /home/hosted/warpstorm/public_html/forum/admin/functions.php on line 2271"
As soon as that one is fixed, everything else will be fine again as well. My admin/functions.php doesn't even have that many lines... Sounds like there is a } missing somewhere... What have you got at that line?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:40 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04944 seconds
  • Memory Usage 2,305KB
  • Queries Executed 23 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (5)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete