vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   lockdown for 2.3 ? (https://vborg.vbsupport.ru/showthread.php?t=67028)

firas 07-17-2004 04:21 AM

Quote:

Originally Posted by Xenon
Well, such a hack wasn't released here right now.

IIRC you can just get it by paying currently.

sorry but didn't get what u meant...where can i get it and how can i pay and how much does it cost

Blindchild02 07-18-2004 03:36 AM

can someone explain wut the "lockdown" hack is? and does?

Xenon 07-18-2004 05:26 PM

@firas: sorry no idea, i just know you can buy it somewhere, but not where or how much.

@Blindchild: the lockdownhack is actually a hack, that requires a user to post into a thread, before he can see special informations in that thread, or download attachments or so.

Most of the time it's the way to make sure, the board stores the IP of those who download anything, but there can be other purposes as well.

Merjawy 07-18-2004 10:07 PM

both are mainly used to force a user to reply nothing more.. They don't want users to register and just read/download without posting ..

I rather let a guest download than having a huge user list with inactive members or force members to say hi/1/me ... etc etc

I had both hacks, just cuz I collect junk not gonna use either

only good use for this is if you have to say something as admin and you want to make sure everyone read it specialy staff members is to make them reply.. thats how I see it

firas 07-20-2004 04:39 AM

Quote:

Originally Posted by Merjawy
I had both hacks, just cuz I collect junk not gonna use either

would u please share it with us

Merjawy 07-20-2004 08:58 PM

I did say I had both hacks :)

TECK 07-21-2004 01:45 AM

Quote:

Originally Posted by Liquid1ce
Ive had this on my system for a while now-
There are no creidts so i do not know who coded it as at the time lockdown was disallowed but heres the code & credits go to who ever coded it

Code:

################
# NEWREPLY.PHP #
################

FIND:

-----------------------------------------------

while ($post=$DB_site->fetch_array($posts)) {
    if ($postcounter++ < $maxposts) {
          if ($postcounter%2 == 0) {
            $backcolor = "{firstaltcolor}";
          } else {
            $backcolor = "{secondaltcolor}";
          }
          $username=$post[username];
          $reviewmessage=bbcodeparse($post[pagetext],$threadinfo[forumid],$post[allowsmilie]);
eval("\$threadreviewbits .= \"".gettemplate("threadreviewbit")."\";");
      } else {
        break;
      }
 }

-----------------------------------------------

################
# REPLACE WITH #
################

-----------------------------------------------

while ($post=$DB_site->fetch_array($posts)) {
  if ($postcounter++ < $maxposts) {
        if ($postcounter%2 == 0) {
          $backcolor = "{firstaltcolor}";
        } else {
          $backcolor = "{secondaltcolor}";
        }
        $username=$post[username];
        $reviewmessage=bbcodeparse($post[pagetext],$threadinfo[forumid],$post[allowsmilie]);
        ##### [hide] [/hide] HACK #####
        $hide_shown = 0;
        $hide_posts = $DB_site->query("SELECT userid FROM post WHERE threadid='$threadid'");
        $hideisadmin = $DB_site->query("SELECT user.usergroupid FROM usergroup,user WHERE usergroup.usergroupid = user.usergroupid AND user.userid = '$session[userid]'");
        $hideisadmin  = $DB_site->fetch_array($hideisadmin);
        while ($hide_user = $DB_site->fetch_array($hide_posts)) {
          if((($hide_user[userid] == $session[userid]) OR ($hideisadmin[usergroupid] == 6)) AND $hide_shown == 0) {
          $reviewmessage = str_replace("[hide]","
[LOCKDOWN]:
",$reviewmessage);
          $reviewmessage = str_replace("[/hide]","",$reviewmessage);
          $hide_shown = 1;
          }
        }
        if ($hide_shown == 0) {
          for ($i = substr_count($reviewmessage,"[hide]"); $i > 0; $i--) {
          $reviewmessage = substr_replace($reviewmessage,"Lockdown
You must reply to see the hidden text",strpos($reviewmessage,"[hide]"),(strpos($reviewmessage,"[/hide]")-strpos($reviewmessage,"[hide]"))+7);
        }
      }
    ###############
        eval("\$threadreviewbits .= \"".gettemplate("threadreviewbit")."\";");
      } else {
        break;
      }
 }

-----------------------------------------------

##################
# SHOWTHREAD.php #
##################

FIND:

-----------------------------------------------

if ($post[ip]!="") {
  if ($logip==2) {
    eval("\$post[iplogged] .= \"".gettemplate("postbit_ip_show")."\";");
  }
  if ($logip==1) {
    eval("\$post[iplogged] .= \"".gettemplate("postbit_ip_hidden")."\";");
  }
  if ($logip==0) {
    $post[iplogged]="";
  }
 } else {
  $post[iplogged]="";
 }

 $post[message]=bbcodeparse($post[pagetext],$forum[forumid],$post[allowsmilie]);

-----------------------------------------------

######################
# UNDER THAT INSERT: #
######################

-----------------------------------------------

##### [hide] [/hide] HACK #####
  $hide_shown = 0;
  $hide_posts = $DB_site->query("SELECT userid FROM post WHERE threadid='$threadid'");
    $hideisadmin = $DB_site->query("SELECT user.usergroupid FROM usergroup,user WHERE usergroup.usergroupid = user.usergroupid AND user.userid = '$session[userid]'");
    $hideisadmin  = $DB_site->fetch_array($hideisadmin);
  while ($hide_user = $DB_site->fetch_array($hide_posts)) {
    if((($hide_user[userid] == $session[userid]) OR ($hideisadmin[usergroupid] == 6)) AND $hide_shown == 0) {
      $post[message] = str_replace("[hide]","
[LOCKDOWN]:
",$post[message]);
      $post[message] = str_replace("[/hide]","",$post[message]);
      $hide_shown = 1;
    }
    }
    if ($hide_shown == 0) {
      for ($i = substr_count($post[message],"[hide]"); $i > 0; $i--) {
      $post[message] = substr_replace($post[message],"Lockdown
You must reply to see the hidden text",strpos($post[message],"[hide]"),(strpos($post[message],"[/hide]")-strpos($post[message],"[hide]"))+7);
      }
    }

-----------------------------------------------


I was looking only at the showthread part... it will add 4 queries for each post...
Ending with 30-40 queries per page, easy. Please don't use it.

firas 07-21-2004 04:06 AM

Quote:

Originally Posted by Merjawy
I did say I had both hacks :)

and i did say please share it with us...:)

TECK: thanx i won't use it. i wanna that one for attachments

Xenon 07-21-2004 02:21 PM

firas, He had them, that's past tense, so i'd assume he doesn't have them anymore.
;)

Merjawy 07-21-2004 07:55 PM

Thnx Xenon, thats exactly it.


All times are GMT. The time now is 08:03 PM.

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.01175 seconds
  • Memory Usage 1,753KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete