Skip to content

Instantly share code, notes, and snippets.

@FrancisGregori
Last active August 29, 2015 14:16
Show Gist options
  • Save FrancisGregori/082fd82b624af1406447 to your computer and use it in GitHub Desktop.
Save FrancisGregori/082fd82b624af1406447 to your computer and use it in GitHub Desktop.
Fixed bug when to you migrate a magento database(Magento admin 404)
SET FOREIGN_KEY_CHECKS=0;
UPDATE core_store SET store_id = 0 WHERE code='admin';
UPDATE core_store_group SET group_id = 0 WHERE name='Default';
UPDATE core_website SET website_id = 0 WHERE code='admin';
UPDATE customer_group SET customer_group_id = 0 WHERE customer_group_code='NOT LOGGED IN';
SET FOREIGN_KEY_CHECKS=1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment