Okay, one problem I had was the referer links were fairly long, and were pushing the 'referer summary' box off the screen to the right. Here's how I fixed it:
in statistik.php, find
Code:
$referer_summe = $top_referer['Zaehler'];
and paste this underneath:
Code:
$referer_short = substr($referer_adresse,0,50);
and then, in the statistik_referer template, replace the entire thing with
Code:
<tr>
<td class="alt2" valign="top">
<a href="$referer_adresse">$referer_short</a> ($referer_summe Visitor(s))
</td>
</tr>
Also, the font surrounding the copyright doesn't match everything else. In the statistik_hauptseite template, I changed
Code:
<font face="Times New Roman">? by PcFreak</font>
to
although I don't see the reason for the copyright to appear so many times...
see my
example (I've cleaned up some other things as well - just to suite my taste)
one thing that I'm still working on is the location that's reported in online.php. Currently, if you're viewing statistik.php, online.php reports "
LOCATION UNKNOWN" with a link to statistik.php.