PDA

View Full Version : Total VIEWS count hack


dontpanic
09-04-2003, 06:30 PM
OK, we have total members, total threads and total posts...why not a total views count? Even better yet, views this week or views this month count. I've tried to work this out, but have not been successful thus far.

Anyone else up to the challenge?

assassingod
09-04-2003, 06:59 PM
My latest hack does this, and I released it somewhere else in this forum, but here it is again:

Open index.php, find:

eval("dooutput(\"".gettemplate('forumhome')."\");");


Above add:


// get total views of entire forum
$threadviews=$DB_site->query_first('SELECT COUNT(*) AS threads, SUM(views) AS views FROM thread');
$totalviews=number_format($threadviews['views']);


then add $totalviews anywhere in the forumhome template

dontpanic
09-04-2003, 07:12 PM
Right on, works like a champ and only one query added.

Now...how would I filter this for say only the last 7 days??

assassingod
09-04-2003, 07:19 PM
Not too sure, it would probably be something like finding the dateline for the last 7 days then using that. I may look into it.

dontpanic
09-04-2003, 07:20 PM
That would be cool.

TIA :banana:

Falcon Capt
07-31-2006, 03:17 AM
Anybody have an update for this hack that will work with V3.5.4???