Does not uninstall the tables correctly and there was no uninstall in my modules setttings. Removed manually.
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | 248950.patch | 647 bytes | swentel |
Does not uninstall the tables correctly and there was no uninstall in my modules setttings. Removed manually.
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | 248950.patch | 647 bytes | swentel |
Comments
Comment #1
mschupan commentedSame 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
Comment #2
mzenner commentedSame 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 ;-)
Comment #3
nunoveloso commentedHere it works normally.
Does anyone have the same issue?
Comment #4
mariuss commentedSame here, with version 2.2.
Comment #5
swentel commentedChecking on success is done wrong, although installation goes fine. Patch attached fixes it and also implements hook_uninstall().
Comment #6
Rhino commentedConfirmed - 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.
Comment #7
nunoveloso commentedon version 2.3. thank you.