mc12345678:
Still need this and more information... Not in front of your computer, so can not make random guesses at what is going on. Now there are new things not previously identified with which to contend. In what table(s) are all of those extra fields? Are they all listed in the configuration->Easy Populate 4->custom fields entry? What data type is each one? Are they all listed in the example provided above? If your datafile only had one record in it, do you get a different result? What EP4 file modifications are there? What happens if you omit the custom fields from the import? What program is used to modify the files?
Here is the information that you have requested:
CREATE TABLE IF NOT EXISTS products (
products_id int(11) NOT NULL AUTO_INCREMENT,
products_type int(11) NOT NULL DEFAULT '1',
products_quantity float NOT NULL DEFAULT '0',
products_model varchar(32) DEFAULT NULL,
products_sku varchar(32) DEFAULT NULL,
products_image varchar(64) DEFAULT NULL,
products_price decimal(15,4) NOT NULL DEFAULT '0.0000',
products_price_w varchar(150) DEFAULT '0',
products_price_carrot decimal(15,4) DEFAULT '0.0000',
products_virtual tinyint(1) NOT NULL DEFAULT '0',
products_date_added datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
products_last_modified datetime DEFAULT NULL,
products_date_available datetime DEFAULT NULL,
products_weight float NOT NULL DEFAULT '0',
products_length float(6,2) DEFAULT NULL,
products_height float(6,2) DEFAULT NULL,
products_width float(6,2) DEFAULT NULL,
dangerous_goods int(1) DEFAULT '0',
products_status tinyint(1) NOT NULL DEFAULT '0',
products_carrot tinyint(1) DEFAULT '0',
threshold_set tinyint(1) DEFAULT '0',
products_tax_class_id int(11) NOT NULL DEFAULT '0',
manufacturers_id int(11) DEFAULT NULL,
products_ordered float NOT NULL DEFAULT '0',
products_quantity_order_min float NOT NULL DEFAULT '1',
products_quantity_order_units float NOT NULL DEFAULT '1',
products_priced_by_attribute tinyint(1) NOT NULL DEFAULT '0',
product_is_free tinyint(1) NOT NULL DEFAULT '0',
product_is_call tinyint(1) NOT NULL DEFAULT '0',
products_quantity_mixed tinyint(1) NOT NULL DEFAULT '0',
product_is_always_free_shipping tinyint(1) NOT NULL DEFAULT '0',
products_qty_box_status tinyint(1) NOT NULL DEFAULT '1',
products_quantity_order_max float NOT NULL DEFAULT '0',
products_sort_order int(11) NOT NULL DEFAULT '0',
products_discount_type tinyint(1) NOT NULL DEFAULT '0',
products_discount_type_from tinyint(1) NOT NULL DEFAULT '0',
products_price_sorter decimal(15,4) NOT NULL DEFAULT '0.0000',
master_categories_id int(11) NOT NULL DEFAULT '0',
products_mixed_discount_quantity tinyint(1) NOT NULL DEFAULT '1',
metatags_title_status tinyint(1) NOT NULL DEFAULT '0',
metatags_products_name_status tinyint(1) NOT NULL DEFAULT '0',
metatags_model_status tinyint(1) NOT NULL DEFAULT '0',
metatags_price_status tinyint(1) NOT NULL DEFAULT '0',
metatags_title_tagline_status tinyint(1) NOT NULL DEFAULT '0',
products_condition varchar(32) DEFAULT NULL,
products_EHF varchar(100) NOT NULL DEFAULT 'none',
additional_skus varchar(250) DEFAULT NULL,
additional_skus_only int(1) DEFAULT NULL,
discontinue int(1) DEFAULT '0',
products_pdf_attachment varchar(300) NOT NULL,
products_vendor_code varchar(32) DEFAULT NULL,
products_vendor_price decimal(15,4) DEFAULT NULL,
availability_id int(11) DEFAULT NULL,
PRIMARY KEY (products_id),
KEY idx_products_date_added_zen (products_date_added),
KEY idx_products_status_zen (products_status),
KEY idx_products_date_available_zen (products_date_available),
KEY idx_products_ordered_zen (products_ordered),
KEY idx_products_model_zen (products_model),
KEY idx_products_price_sorter_zen (products_price_sorter),
KEY idx_master_categories_id_zen (master_categories_id),
KEY idx_products_sort_order_zen (products_sort_order),
KEY idx_manufacturers_id_zen (manufacturers_id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=20689 ;
I have attached images as well.
Using Open office to edit the files.
Removed the addition fields and still had the same issues as shown in images fields not loaded.
This is what is shown when the file has been uploaded:
Filename: Full-EP2015Apr11-205047.csv
NEW PRODUCT! - Model: EP4test | 1 | Product im | Rover | ep4test | | | | | 2 | 0 | | | | | | | | | 1 | Rover | EP4 Test F | | | | | | | | | | |
Finished Processing Import File
Updated records: 0
New Imported records: 1
Errors Detected: 0
Warnings Detected: 0
Memory Usage: 11443144
Memory Peak: 11916512
Execution Time: 0.0130989551544 seconds.