Quote:
Originally Posted by nexialys
but i would usggest you to release it in the BETA forum instead, because it's in development, not really releaseable on production sites...
but maybe you can modify it to have a if statement depending on PHP version we have on our server...
|
It's actually pretty much of production quality, I'm running this with small changes now. According to dwh's thread at vb.com, he has this hack applied and running, too.
This hack doesn't depend on PHP version, only on MySQL version - anything greater than 4.0 works.
My changes are:
1. This string has a typo, there should be a space after "FROM"
PHP Code:
$DB_site->query("DELETE FROM". TABLE_PREFIX ."threadviewsaggregate");
2. After applying hack, move this line immediately after the line with INSERT SQL statement:
PHP Code:
$DB_site->query("DELETE FROM " . TABLE_PREFIX . "threadviews");
Reason for this is explained here:
http://www.vbulletin.com/forum/showp...4&postcount=16