Hello all,
I have noticed some errors in the uk locations file. The SQL will need to tailored for your database, but here is what worked on my database.
change great manchester to greater manchesterUPDATE `db_oscl355`.`osc05_t_region` SET `fk_c_country_code` = 'GB', `s_name` = 'Greater Manchester' WHERE `osc05_t_region`.`pk_i_id` = 741078;
change great London to greater LondonUPDATE `db_oscl355`.`osc05_t_region` SET `s_name` = 'Greater London' WHERE `osc05_t_region`.`pk_i_id` = 740996;
Add Welsh and Scottish towns REPLACE INTO /*TABLE_PREFIX*/osc05_t_region (pk_i_id, fk_c_country_code, s_name, b_active) VALUES
(742189, 'gb', 'Wales', 1);
REPLACE INTO /*TABLE_PREFIX*/osc05_t_city (pk_i_id, fk_i_region_id, fk_c_country_code, s_name, b_active) VALUES
(36320, 742189, 'gb', 'Aberystwyth', 1),
(36321, 742189, 'gb', 'Bagor', 1),
(36322, 742189, 'gb', 'Cardiff', 1),
(36323, 742189, 'gb', 'Caernarfon', 1),
(36324, 742189, 'gb', 'Colwyn Bay', 1),
(36325, 742189, 'gb', 'Carmarthen', 1),
(36326, 742189, 'gb', 'Milford Haven', 1),
(36327, 742189, 'gb', 'Neath', 1),
(36328, 742189, 'gb', ' Newport, Gwent', 1),
(36329, 742189, 'gb', 'Swansea ', 1);
REPLACE INTO /*TABLE_PREFIX*/osc05_t_region (pk_i_id, fk_c_country_code, s_name, b_active) VALUES
(742199, 'gb', 'Scotland', 1);
REPLACE INTO /*TABLE_PREFIX*/osc05_t_city (pk_i_id, fk_i_region_id, fk_c_country_code, s_name, b_active) VALUES
(36329, 742199, 'gb', 'Aberdeen', 1),
(36330, 742199, 'gb', 'Cumbernauld', 1),
(36331, 742199, 'gb', 'Dundee', 1),
(36332, 742199, 'gb', 'East Kilbride', 1),
(36333, 742199, 'gb', 'Edinburgh', 1),
(36334, 742199, 'gb', 'Glasgow', 1),
(36335, 742199, 'gb', 'Hamilton', 1),
(36336, 742199, 'gb', ' Inverness', 1),
(36337, 742199, 'gb', 'Kirkcaldy and Dysart', 1),
(36338, 742199, 'gb', 'Livingston', 1),
(36339, 742199, 'gb', 'Paisley', 1);
Hope it helps!
http://wizevents.co.uk