• So, this plugin killed my WordPress install……is there a fix/way to disable it?

    I can’t get to the admin page.. All I get is

    Fatal error: error traversing GeoLite City database file – perhaps it is corrupt? Try reinstalling it. in C:\FAKEPATH\wp-content\plugins\visitor-maps\include-whos-online-geoip.php on line 454

Viewing 4 replies - 1 through 4 (of 4 total)
  • FTP into your site (or use whatever file management application your host provides) and delete the wp-content\plugins\visitor-maps folder.

    esmi is correct, you can recover control this way.

    That error is usually caused if your PHP does not have enough RAM to open the database file that is 30M in size.

    Some wordpress installs run out of available memory because it is set
    too low in PHP.

    Try one of these methods for increasing the amount of memory a
    PHP script may consume (most people just do #3)

    1. If you have access to your PHP.ini file, change the line in PHP.ini
    If your line shows 32M or less, try increasing it:
    memory_limit = 64M;

    2. If you don’t have access to PHP.ini try adding this to an .htaccess file:
    php_value memory_limit 64M

    3. Try adding this line to your wp-config.php file:
    Increasing memory allocated to PHP
    define(‘WP_MEMORY_LIMIT’, ’64M’);

    4. Talk to your host about their recommended solution.

    Thank you esmi. You helped me greatly. Thank you very much again.

    Here is a related article I wrote
    Checking WordPress for Low PHP Memory Limit
    http://www.fastsecurecontactform.com/php-memory-limit

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Visitor Maps and Who's Online] Fatal error: error traversing GeoLite City database fil’ is closed to new replies.