
Originally Posted by
jonprecise
Please help, im new user of EP attempting to import products to zen cart, getting error when uploading to database with EP =
No model field in record. This line was not imported
No model field in record. This line was not imported
No model field in record. This line was not imported
No model field in record. This line was not imported
No model field in record. This line was not imported
The only documentation I can find on this is that all v_products_model need to be unique , but this is already the case..
also getting error when attempting to import larger files = Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 20379 bytes) in ...\admin\easypopulate.php on line 1314
change line 2351 in easypopulate.php in folder admin
Code:
if ($col == $filelayout['v_products_model'])
to
if ($col == $filelayout['v_products_image'])
change line 1875 in easypopulate.php in folder admin
Code:
if ($v_products_model != "")
to
if ($v_products_image != "")
changer line 1879 in easypopulate.php in folder admin
Code:
$result = ep_query("SELECT products_id FROM ".TABLE_PRODUCTS." WHERE (products_model = '" . zen_db_input($v_products_model) . "')");
to
$result = ep_query("SELECT products_id FROM ".TABLE_PRODUCTS." WHERE (products_image = '" . zen_db_input($v_products_image) . "')");
hope can help you
Bookmarks