I am using MaxMind's GeoIP location database with PHP version 5.4.4.
To test it, I installed geoip.inc and the GeoIP.dat file locally to run in MAMP, my mac development environment. These are the newest versions of each, downloaded today.
All files are contained in one directory for easy inclusion.
Locally, the following code works perfectly:
<?php
// This code demonstrates how to lookup the country by IP Address
include("geoip.inc");
$gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
echo geoip_country_name_by_addr($gi, "24.24.24.24") . "\n";
geoip_close($gi);
?>
This outputs the country name for that IP address correctly. When uploading the directory to my server, this code results instead in an HTTP Error 500 (Server Error). I have chmod to 777 to ensure that it's not a permissions error in this respect. I don't know what step to take next to troubleshoot this. What should I check either on the server configuration or otherwise next to troubleshoot this error?
Would chown from root to www-data solve this issue?