View Single Post
  #15  
Old 6th June 2015, 01:32
ArcticWolf ArcticWolf is offline
Senior Member
 
Join Date: Oct 2008
Posts: 41
Default
looks like in php 5.4+ stuff changed
I dont use this myself ROFL but looking around on Google
in
/var/www/tracker/include/functions.php on line 158
change
Code:
if (ip_valid(&$_SERVER[$c])) {
to
Code:
if (ip_valid($_SERVER[$c])) {
Reply With Quote