I noticed that some of my tables don't have the zen_ prefix.
This sounds problematic!!
I do not use prefixes so you need to check your records inside the tables to see if they are also prefixed.
In the dealgates.php file find the sql and this is part of it and I am only altering the table(first part) and not the record designation.
How it is:
Code:
$sql = "
SELECT concat( '" . $productURL . "' ,products.products_id) AS product_url,
products_model AS prodModel, products_weight,
manufacturers.manufacturers_name AS mfgName,
Change all to:
Code:
$sql = "
SELECT concat( '" . $productURL . "' ,zen_products.products_id) AS product_url,
products_model AS prodModel, products_weight,
zen_manufacturers.manufacturers_name AS mfgName,
And so forth for all table references and record references if you find that they also have been prefixed
And/or square away your ZC DB and remove the prefixes.