vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   IP of every person that replies (https://vborg.vbsupport.ru/showthread.php?t=53692)

BigJohnson 06-01-2003 05:54 PM

IP of every person that replies
 
I want to create a hack where the IP to everyone that replies to a thread will show to only the creator of the thread in the first post as a list.

I want it to work only in forum ids 13, 16, 18, 19

Can someone please help me out. Thanks.

BigJohnson 06-02-2003 08:02 PM

bump

BigJohnson 06-11-2003 10:04 PM

BUMP. SOMEONE PLEASE HELP.

Chris M 06-11-2003 10:11 PM

This is a Security & Privacy risk, and therefore should not be coded:(

Satan

BigJohnson 06-15-2003 08:55 PM

I don't understand how this shouldn't be coded.

I can have it in VB options to show everyones ip address to everyone. How come this is now a security and privacy risk?

I hope someone can please me out with this one.

BigJohnson 06-15-2003 09:39 PM

I have modified a hack to look like this.

PHP Code:

1. Run the following query:

ALTER TABLE thread ADD useridviews TEXT NOT NULL AFTER views;


2. In showthread.phpfind:

if (
$noshutdownfunc) {
  
$DB_site->query("UPDATE thread SET views=views+1 WHERE threadid='$threadid'");
} else {
  
$shutdownqueries[]="UPDATE LOW_PRIORITY thread SET views=views+1 WHERE threadid='$threadid'";
}

After thatadd:

// make sure not to have redundancy in the view list, so get who's viewed it
// first (and do nothing for invisible users)
$thisthread $DB_site->query_first("SELECT useridviews FROM thread
    WHERE threadid = 
$threadid");
$useridviews explode(" "$thisthread['useridviews']);
if (!
$bbuserinfo['invisible'])
{
    if (!empty(
$thisthread['useridviews']))
    {
        if (!
in_array($bbuserinfo['userid'], $useridviews))
        {
            
$DB_site->query("
                UPDATE thread
                SET useridviews = CONCAT(useridviews, \" \", \"" 
.
                    
$bbuserinfo['userid'] . "\")
                WHERE threadid = 
$threadid");
        }
    }
    else
    {
        
$DB_site->query("UPDATE thread
            SET useridviews = \"" 
$bbuserinfo['userid'] . "\"
            WHERE threadid = 
$threadid");
    }
}

// now...who's viewed this thread? (will include $bbuserinfo if he's not invis)
if (empty($thisthread['useridviews']))
{
    
$thread['viewers'] = "nobody";
}
else
{
    
$result $DB_site->query("SELECT userid, ipaddress FROM user
        WHERE userid IN (" 
implode(", "$useridviews) . ")");
    
$viewers = array();
    while (
$user $DB_site->fetch_array($result))
    {
        
array_push($viewers"<a target=\"_blank\" href=\"member.php?s=" .
            
$session['sessionhash'] . "&action=getinfo&userid=" .
            
$user['userid'] . "\">" htmlspecialchars($user['ipaddress']) .
            
"</a>");
    }
    
$thread['viewers'] = implode(", "$viewers);
}


3. In showthreadfind:

$poll

Before that
add:

<
smallfont>Already viewed or currently viewing this thread:</b$thread[viewers]</smallfont><br

I think this will work but one thing.

How do I make it so that ONLY the person who started the thread can view these ips?

Please help me with that part at least. Thank you.

o ya and how do I make it only show in the Forum Ids above in my first post. Thanks again.

BigJohnson 06-17-2003 08:36 AM

bump

S.Shady 06-17-2003 07:20 PM

put that in help me finish forum ppl might help. i would but i dont know php :(

BigJohnson 06-17-2003 11:33 PM

Quote:

Today at 04:20 PM S.Shady said this in Post #8
put that in help me finish forum ppl might help. i would but i dont know php :(

Thanks bud Did that hope it gets more attention there hehe.

BigJohnson 06-18-2003 03:31 PM

bump help please


All times are GMT. The time now is 12:57 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.01096 seconds
  • Memory Usage 1,755KB
  • 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_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)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