• The output after the scan shows all tables in lowercase but my database uses tables with upper and lowercase names.

    This causes that the plugin cannot delete the tables.
    The developer should update its code show it doesn’t lowercase the scan results.

Viewing 1 replies (of 1 total)
  • Thread Starter Meer-Web

    (@meer-web)

    Fixed by editing

    /wp-content/plugins/plugins-garbage-collector/includes/lib.php

    Line 52

    replace:
    $existing_table1 = strtolower($existing_table);
    with:
    $existing_table1 = $existing_table;

Viewing 1 replies (of 1 total)
  • The topic ‘Will not delete due to lowercase output’ is closed to new replies.