Quote:
Originally Posted by Spinball
The number of page views doesn't seem to be incrementing for my webtemplates.
I have the 'Count page visitors?' set to 'Yes' and the 'Logged Visitors' to 0.
Any idea what's wrong?
|
Good catch of a bug!
Here is the fix:
Edit "view.php", find:
PHP Code:
$DB_site->query("UPDATE $WT_DB_TemplateTable SET lastvisitorid='$bbuserinfo[userid]', lastvisittime='".time()."' WHERE wtid='$WT[wtid]'");
replace it as:
PHP Code:
$DB_site->query("UPDATE $WT_DB_TemplateTable SET pagecount=pagecount+1, lastvisitorid='$bbuserinfo[userid]', lastvisittime='".time()."' WHERE wtid='$WT[wtid]'");