Does not uninstall the tables correctly and there was no uninstall in my modules setttings. Removed manually.

CommentFileSizeAuthor
#5 248950.patch647 bytesswentel

Comments

mschupan’s picture

Version: 5.x-1.5 » 6.x-2.0

Same thing happened to me as well, but I wasn't logged in as the installation owner (User ID: 1?)

"Table installation for the False Accounts module was unsuccessful."

Disabled the module, logged in as the installation owner, Enabled the module, and no errors. Did manually remove it, so not sure if it installed completely or correctly the 2nd time ... there just wasn't an error message the second time.

Page at Home › Administer › User management › False Account Detector seems to look Ok, though.

Mike

mzenner’s picture

Priority: Normal » Minor

Same message over here. I got the message but actually the table install was ok.

Drupal 6.6
I did install as user 1.

mysql - export ==
CREATE TABLE IF NOT EXISTS `false_accounts` (
`cid` varchar(64) NOT NULL,
`uid` int(11) NOT NULL,
`created` int(10) unsigned NOT NULL default '0',
`status` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`cid`,`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

So I guess the 'error-message' was in error ;-)

nunoveloso’s picture

Title: does not uninstall correctly » does not install correctly

Here it works normally.

Does anyone have the same issue?

mariuss’s picture

Version: 6.x-2.0 » 6.x-2.2
Priority: Minor » Normal

Same here, with version 2.2.

swentel’s picture

Status: Active » Needs review
StatusFileSize
new647 bytes

Checking on success is done wrong, although installation goes fine. Patch attached fixes it and also implements hook_uninstall().

Rhino’s picture

Confirmed - I get the "Table installation for the False Accounts module was unsuccessful." but the installation has gone through and I do have a table as well. Nice patch swentel.

nunoveloso’s picture

Status: Needs review » Fixed

on version 2.3. thank you.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.