You get the error because the complete path name is in the 'submit-proxy.php' file. However you can remove the path so it just has the GeoIP.dat file listed, it works on any cpanel account and doesn't need to be changed when moving hosting then. There are 5 instances like this:
Code:
//geoip
include("geoip.inc");
$gi = geoip_open("/home/granahub/public_html/proxycentral.org/GeoIP.dat",GEOIP_STANDARD);
$country = geoip_country_name_by_addr($gi, $websiteip);
They need changing to:
Code:
//geoip
include("geoip.inc");
$gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
$country = geoip_country_name_by_addr($gi, $websiteip);
Then you can have the GeoIP file in public_html. Good idea to update the file from maxmind too, the supplied one is a year old now. It will help stop the blank country ID's as a lot have changed in the last 12 months.
Bookmarks