vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   [release a minihack---personal glamour for vb2] (https://vborg.vbsupport.ru/showthread.php?t=17116)

ztsky 07-12-2001 07:52 AM

Quote:

Originally posted by ShadowTech
I just thought I would point out that this hack has nothing to do with how active a member is on your forum.

ALL it does is shows how many times ANYONE has viewed a users thread. Not how many threads that user themselves have viewed.

If you want to see it in action to find out how it really works, open up a thread to view the posts.. look at the number of views for the thread creator.. then hit reload.. their number increases by one. Keep hitting reload and their number keeps rising.

So if you are using this hack thinking it shows how frequently your user is surfing around the board looking at people's posts.. you are mistaken.

I don't think you had read this hack.
$personal= 2*$userinfo[posts]+$personal0[personalviews];

ShadowTech 07-12-2001 07:54 AM

Quote:

Originally posted by ztsky


I don't think you had read this hack.
$personal= 2*$userinfo[posts]+$personal0[personalviews];

this is the same exact code I edited in my .php files to install this hack and that is how it works on my board. Anyone who views the thread increases the thread starters' views count.

ztsky 07-12-2001 08:10 AM

Quote:

Originally posted by ShadowTech


this is the same exact code I edited in my .php files to install this hack and that is how it works on my board. Anyone who views the thread increases the thread starters' views count.

Code:

Anyone who views the thread increases the thread starters' views count.
Do you think it not good to count as this?
You can cancell this .
just use:
$personal= 2*$userinfo[posts]+$personal0

ShadowTech 07-12-2001 08:29 AM

I'm not saying it's a bad hack or anything.. just pointing out to those people who think this tracks a user's activity that it in fact doesn't with the default scripting.

I am not too familiar with the code variables on this board.. but I don't doubt it would just take a simple change to track the actual user's specific views.

webhost 07-13-2001 04:28 PM

Ztsky
I have added this hack also which counts total page views for the entire board. You can see at the top of board at http://forums.realwebhost.net When I add the numbers from members from your personalpage view hack your number is around 300 views higher. How would I correct the total count in your hack to reduce the count by 300?

http://vbulletin.com/forum/showthrea...5&pagenumber=1

ztsky 07-13-2001 05:43 PM

Quote:

Originally posted by webhost
Ztsky
I have added this hack also which counts total page views for the entire board. You can see at the top of board at http://forums.realwebhost.net When I add the numbers from members from your personalpage view hack your number is around 300 views higher. How would I correct the total count in your hack to reduce the count by 300?

http://vbulletin.com/forum/showthrea...5&pagenumber=1

$personal= 3*$userinfo[posts]+2$personal0[personalviews];
edit this code,you can figure your own,like:
$personal= $userinfo[posts]+$personal0[personalviews];
or:
$personal= 1/2*$userinfo[posts]+$personal0[personalviews];

webhost 07-13-2001 07:59 PM

member.php Where in here nothing matchs what you posted showthread below.

Thanks Joey

// Find out how much personal glamour does this user has
$personal0 = $DB_site->query_first("
SELECT SUM(views) AS personalviews FROM thread WHERE postuserid='$userinfo[userid]' AND open!='10'");
$activity01= $userinfo[posts]-$starts;
$activity02= $starts;
$activity03= $personal0[personalviews];
$personal= 3*$activity02+2*$activity01+$activity03;

if ($personal2 == ""):
$personal2 = "0";
endif;
// end Findhow much personal glamour

showthread.php

$onlinestatus="";
}
$personal0 = $DB_site->query_first("

SELECT SUM(views) AS personalviews FROM thread WHERE postuserid='$userinfo[userid]' AND open!='10'");

$personal= 2*$userinfo[posts]+$personal0[personalviews];

if ($personal0 == ""):

$personal0 = "0";

endif;

ztsky 07-17-2001 03:57 PM

Hi! webhost
1??**********Edit member.php
**********FIND
Code:

eval("\$birthday = \"".gettemplat("getinfo_birthday")."\";");
}

**********AFTER THIS,ADD
Code:

$startcount = $DB_site->query_first("SELECT COUNT(title) AS starts FROM thread WHERE postuserid='$userinfo[userid]' AND open!='10'");
$starts = $startcount[starts];
if ($starts == ""):
$starts = "0";
endif;
$personal0 = $DB_site->query_first("
SELECT SUM(views) AS personalviews FROM thread WHERE postuserid='$userinfo[userid]' AND open!='10'");
$activity01= $userinfo[posts]-$starts;
$activity02= $starts;
$activity03= $personal0[personalviews];
$personal= 3*$activity02+2*$activity01+$activity03;
if ($personal2 == ""):
$personal2 = "0";
endif;


2??*************editTemplate getinfo
*******FIND
Code:

<tr>
<td bgcolor="#DFDFDF"><normalfont><b>Total Posts:</b></normalfont></td>
<td bgcolor="#DFDFDF"><normalfont>$userinfo[posts] ($postsperday posts per day)</normalfont></td>
</tr>
<tr>
<td bgcolor="#F1F1F1"><normalfont><b>Last Post:</b></normalfont></td>
<td bgcolor="#F1F1F1"><normalfont>$lastpostdate $lastposttime<br><a href="$lastposturl">$lastposttitle</a>$nolastpost</normalfont></td>
</tr>

********AFTER THIS CODE,ADD:
Code:

<tr>
<td bgcolor="#DFDFDF"><normalfont><b>Start Threads:</b></normalfont></td>
<td bgcolor="#DFDFDF"><normalfont>$starts </normalfont></td>
</tr>
<tr>
<td bgcolor="#F1F1F1"><normalfont><b>Personal Views:</b></normalfont></td>
<td bgcolor="#F1F1F1"><normalfont><b>$personal </b></normalfont></td>
</tr>

3??**********Edit SHOWTHREAD.PHP
**********FIND
[CODE] //$post[message].=$post[signature]; [CODE]
**********AFTER THIS,ADD
Code:

// Find out how many threads this user has started
$startcount = $DB_site->query_first("SELECT COUNT(title) AS starts FROM thread WHERE postuserid='$userinfo[userid]' AND open!='10'");
$starts = $startcount[starts];
if ($starts == ""):
$starts = "0";
endif;
$personal0 = $DB_site->query_first("
SELECT SUM(views) AS personalviews FROM thread WHERE postuserid='$userinfo[userid]' AND open!='10'");
$activity01= $userinfo[posts]-$starts;
$activity02= $starts;
$activity03= $personal0[personalviews];
$personal= 3*$activity02+2*$activity01+$activity03;
if ($personal2 == ""):
$personal2 = "0";
endif;

4??**********Edit template POSTBIT
*********FIND:
Code:

<smallfont>Registered: $post[joindate]<br>
Location: $post[field2]<br>
Posts: $post[posts]</smallfont></td>

*******replace it with :
Code:

<smallfont>Registered: $post[joindate]<br>
location: $post[field2]<br>
posts: $post[posts]<br>
personalviews:$personal </smallfont></td>


that's all.

webhost 07-17-2001 04:37 PM

ztsky

ok I reinstalled per your instructions above this is what I have.

Total page views of all members from your hack shows 9602.

My total views shows 9280 a difference of 322. So based on your script above what do I change to subract your count by 322 views?

Joey

webhost 07-17-2001 04:45 PM

ztsky

I don't know how hard it would be for you to do but the best thing would to be somehow take your hack count numbers of personalpageviews and total them up. That way you could use that number for total views of the entire site instead of using the other hack for total views. That way they would always match.


All times are GMT. The time now is 11:53 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.01134 seconds
  • Memory Usage 1,754KB
  • 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
  • (8)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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