I could not honestly say how to upload using easy populate. You could try downloading it from your SQL. I don't work much with SQL so before you attempt anything BACKUP YOUR DATABASE
- Go to https://www.example.com/phpmyadmin/
- Click on the Databases Tab
- Select your database
- Click on the Export Tab
- Click on the Unselect All link
- Hold CTRL and select ultimate_cross_sell_1, ultimate_cross_sell_2 and ultimate_cross_sell_3
- Choose the format you need. SQL should be the default but there are excel and csv format sice you are more familiar with those
- Under Structure, Make sure "Add DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT" and "Add CREATE PROCEDURE / FUNCTION / EVENT" are selected (See attached image below)
- Choose Save as file
- Click Go
- Go to Tools > Install SQL Patches and Run that sql file
Basically you will get the code shown below. You could just make the necessary changes to the first, second and third numbers and the actual table you will be using. i.e. 1 = Cross Sell, 2 = Up Sell, 3 = Related Products.
Whatever you do. BACKUP YOUR DATABASE before doing anything.
DROP TABLE IF EXISTS ultimate_cross_sell_1;
CREATE TABLE IF NOT EXISTS ultimate_cross_sell_1 (
ID int(10) NOT NULL AUTO_INCREMENT,
products_id int(10) unsigned NOT NULL DEFAULT '1',
cross_sell_id int(10) unsigned NOT NULL DEFAULT '1',
sort_order int(10) unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (ID),
KEY idx_products_id_cross_sell (products_id)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
INSERT INTO ultimate_cross_sell_1 (ID, products_id, cross_sell_id, sort_order) VALUES
(1, 12, 13, 1),
(2, 13, 12, 1),
(3, 12, 16, 1),
(4, 16, 12, 1),
(5, 16, 14, 1),
(6, 26, 17, 1),
(7, 27, 9, 1),
(8, 30, 6, 1),
(9, 33, 20, 1);
Hope this helps. Good Luck!