Ahh, I'm dumb. I think I probably messed something up in the config so this is what I have: (I took out my pass)
<?php
/* _________________________________
________| |________
\ | Refer | /
\ | | /
/ |_________________________________| /___________) (___________
Refer 2.0 - 5 June, 2003
Copyright 2003 by Dean Allen -
http://textism.com All rights reserved
*/
// edit these (must be inside 'quotes'):
$usr = 'Amber'; // db username
$pw = 'password'; // db password
$host = 'localhost'; // MySQL server, frequently "localhost"
$db = 'refer'; // database name
$table = 'refer'; // any name you like - installer will create the table
// Fill these in to halt the recording of unwanted referrals
// (i.e., an overly frequent google search, or a robot that
// inserts a referrer for every page it visits) by matching a
// distinct phrase. To add more, just duplicate a line and put
// a different match phrase inside 'quotes'.
$exclude[] = 'netnewswire';
$exclude[] = 'newsaggregator';
$exclude[] = 'syndirella';
// Your web domain, without 'www.'
$mydomain = 'extasy-kissed.org';
// Display visitor addresses in the list? 'Y' or 'N'
$showhost = 'Y';
// If displaying visitor addresses, trim down to top-level domain?
// (i.e., mindspring.com, tiscali.co.uk)? 'Y' or 'N'
$trimhost = 'N';
// How many referrers do you want to view per page?
$count = 50;
// Purge old referrers after how many days?
$expire = 30;
// Name of your site (for RSS feed)
$sitename = "Extasy Kissed";
// Enter the time difference in hours (i.e., +6 or -3)
// if any, between you and your webserver, otherwise use 0
$tzoffset = 0;
// Delete the # at your preferred time format
$tformat = "G:i"; // 12:00 (24hr clock)// END CONFIGURATION
--------------------------------
Help?