r1formetoo:
1146 Table 'redlines_zen.scart' doesn't exist
in:
[SELECT cb.customers_id, cb.products_id, cb.customers_basket_quantity, cb.customers_basket_date_added, cus.customers_firstname, cus.customers_lastname, cus.customers_telephone, cus.customers_email_address, sc.datemodified FROM customers_basket cb LEFT JOIN customers cus ON (cb.customers_id = cus.customers_id) LEFT JOIN scart sc ON (cb.customers_id = sc.customers_id) WHERE cb.customers_basket_date_added >= '20101028' AND cb.customers_id NOT IN ('') ORDER BY cb.customers_id ASC, cb.customers_basket_date_added DESC]
This means that you either did not run the full patch to install the mod (which creates a new table called scart) or that when trying to run the patch it did not complete. In either case, your database does not have the scart table which is required to run the mod.
When you run the SQL patch what type of message do you get?
Could there be a permission issue on the live server that does not allow the user to create a table? If so, that will fail (but adding new settings to the configuration will work as the table(s) are already present for those.
Check with your host to see if there are some MySQL restrictions on creating a new table.
You could also try to run the patch through phpMyAdmin to see what occurs (just the portion that creates the scart table). But you'll need to make sure you alter the language to add the redlines_zen prefix before any table created.
If you can isolate what is different from the test server and the live server you'll have found the answer as to what is causing it not to install. There has to be a configuration difference between the two or it would work on both just fine (since it works on the test server.)