@Xbox Memberships
Emailed the countries table as requested.
If you are using a prefix in your DB then you need to open the countries.sql file with your editor and add the prefix asf:
If your prefix is zen_ then change the line
Code:
CREATE TABLE IF NOT EXISTS `countries` (
to
Code:
CREATE TABLE IF NOT EXISTS `zen_countries` (
and change the line
Code:
INSERT INTO `countries` (`countries_id`, `countries_name`, `countries_iso_code_2`, `countries_iso_code_3`, `address_format_id`) VALUES
to
Code:
INSERT INTO `zen_countries` (`countries_id`, `countries_name`, `countries_iso_code_2`, `countries_iso_code_3`, `address_format_id`) VALUES
Save the changed file and then import the sql patch into your DB
Make sure you backup your live DB before doing this.
Best to set your store to Maintenance mode.