I get the following error when installing:

PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'kernels.cache_mailchimp_user' doesn't exist: CREATE TABLE {cache_mailchimp_user} ( `cid` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` LONGBLOB NULL DEFAULT NULL COMMENT 'A collection of data to cache.', `expire` INT NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', `created` INT NOT NULL DEFAULT 0 COMMENT 'A Unix timestamp indicating when the cache entry was created.', `serialized` SMALLINT NOT NULL DEFAULT 0 COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', PRIMARY KEY (`cid`), INDEX `expire` (`expire`) ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COMMENT 'Cache table for the MailChimp module to store a list...'; Array ( ) in db_create_table() (line 2688 of /Users/Shared/Dropbox/Websites/Kernels/drupal-7.8/includes/database/database.inc).

I had previously installed and uninstalled mailchimp, on reinstall I get the above error.

Any one else experience something similar.

Comments

levelos’s picture

Status: Active » Closed (works as designed)

Likely not a complete uninstall. Disabling a module doesn't uninstall it, and when you reinstalled, the mod didn't run the install process.

timodwhit’s picture

I disabled and uninstalled.

When I went to reinstall, the mod ran into the error above.

Any suggestions?