Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.