Recent Topics

1 Jul 22, 2005 00:11    

I've stopped posting on my b2evo blog and I want to now make it basically frozen in time. I don't want to have any new comments or referrals.

For comments, I'm just going to do a mass set in the database for the table evo_posts and set "post_comments" to disabled, but what about referrers, how can I stop new referral entries from showing up?

2 Jul 22, 2005 00:59

Open up _functions_hitlogs.php

Find the line that looks like this:

function log_hit()
{

Make it look like this (adding the "return" statement)

function log_hit()
{
	return;

You can leave the rest of the function there, in case you want to turn it back on someday - it's not hurting anyone :)

3 Jul 22, 2005 01:32

Excellent! Thanks a lot. :)


Form is loading...