Recent Topics

1 Oct 27, 2006 15:23    

I hace installed version 1.8.2 (new install). It has been working fine for a month now.
Today I noticed stats stopped working 10 days ago.
I have the stats feature (number of days I want to keep stats) in 0 so I don't think that is the problem.
Any clues?

2 Oct 28, 2006 21:14

Fix:

My skin was missing the Hitlog code:

<?php	log_hit();	// log the hit on this page	?>

I placed it before the closing body tag and stats started showing again.

3 Oct 28, 2006 21:45

That's the old way of doing it. Eventually all that old stuff won't work, so you might want to go with the new way of logging hits.

<?php
	$Hit->log();	// log the hit on this page
	debug_info(); // output debug info if requested
?>

4 Oct 28, 2006 21:50

I will, thank you.


Form is loading...