Zencart 1.3.9h similar error message. I had a lot of products with extraneous spaces in them. Hoping the following SQL fixes the problem.
UPDATE `cart1_products_description` SET `products_name` = TRIM(`products_name`);
UPDATE `cart1_products_description` SET `products_name` = REPLACE( `products_name`, " ", " " );
This has been going on for a bit on my cart.. but doesn't seem to be affecting orders.


Reply With Quote
