There is an error in the SEOChecklist.install file, on line 69.
Due to this users who had a prefix before the database tables cannot correctly complete the installation of the module.

Change:
db_query("INSERT INTO `seo_checklist` (`id`, `group_id`, `subgroup_id`, `name`, `module`, `download`, `enable`, `configure`, `order_id`) VALUES (1, 1, 0, 'Page Title Module', 'page_title', 'http://drupal.org/project/page_title', '?q=admin/build/modules', '?q=admin/settings/page_title', 1),

To:
db_query("INSERT INTO {seo_checklist} (`id`, `group_id`, `subgroup_id`, `name`, `module`, `download`, `enable`, `configure`, `order_id`) VALUES (1, 1, 0, 'Page Title Module', 'page_title', 'http://drupal.org/project/page_title', '?q=admin/build/modules', '?q=admin/settings/page_title', 1),

banned,

Comments

ben finklea’s picture

Assigned: Unassigned » ben finklea
Status: Active » Closed (fixed)

Fixed and committed. Thanks for the heads up!