Page 1 of 1
Setting Hit Counter Number?
Posted: Wed Aug 15, 2007 7:31 pm
by mngujara
Hi, how do you set the number of hits in the Hit Counter CMSms module? My old site, prior to using CMSms had 12,000 hits logged, so I would like to start from there.
There is no way in the Hit Counter admin area, so what can I edit to do this?
thanks
Re: Setting Hit Counter Number?
Posted: Wed Aug 15, 2007 7:55 pm
by Nullig
You could edit the HitCounter.module.php file and change this line (about 2/3 of the way down):
$count = $row['total']+12000;
Nullig
Re: Setting Hit Counter Number?
Posted: Wed Aug 15, 2007 8:04 pm
by mngujara
Nullig wrote:
You could edit the HitCounter.module.php file and change this line (about 2/3 of the way down):
$count = $row['total']+12000;
Nullig
OK I tried it. Yes that did work. I had to add the
"+12000" twice. Thanks.