-
- beoserviceNL

-
Total Posts: 0
Joined: 2012-11-21
|
Probably not related to this issue though I also had a reindex issue only for category flat data.
Fix for me was granting right permissions to magento mysql admin as in:
GRANT CREATE, ALTER, INDEX, DROP, CREATE TEMPORARY TABLES, SELECT, INSERT, UPDATE, DELETE ON magento.* TO ‘magento_admin’@’localhost’ IDENTIFIED BY ‘&#xma;gento_admin_password%’;
GRANT CREATE, ALTER, INDEX, DROP, CREATE TEMPORARY TABLES, SELECT, INSERT, UPDATE, DELETE ON magento.* TO ‘magento_admin’@’localhost.localdomain’ IDENTIFIED BY ‘&#xma;gento_admin_password%’;
FLUSH PRIVILEGES;
quit
Goodluck
|