macha Posted April 24, 2006 Posted April 24, 2006 First problem 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-20, 20' at line 1 select newsletters_id, title, length(content) as content_length, module, date_added, date_sent, status, locked from newsletters order by date_added desc limit -20, 20 [TEP STOP] Second 1054 - Unknown column 'p.products_id' in 'on clause' select count(p.products_id) as total from products_description pd, products p left join manufacturers m on p.manufacturers_id = m.manufacturers_id, products_to_categories p2c left join specials s on p.products_id = s.products_id where p.products_status = '1' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '1' and p2c.categories_id = '21' [TEP STOP] What should i do?Thanks!
cudd1es Posted April 24, 2006 Posted April 24, 2006 Did you download the complete installation package? If so, there is a file called update-20051113.html that will provide the step by step changes.
Wendy James Posted April 24, 2006 Posted April 24, 2006 1064 is a common error. Means you have nothing in the database table for the site to get. http://www.oscommerce.com/forums/index.php?showtopic=144095 Read that :) Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
macha Posted April 24, 2006 Author Posted April 24, 2006 but this one 1054 - Unknown column 'p.products_id' in 'on clause' select count(p.products_id) as total from products_description pd, products p left join manufacturers m on p.manufacturers_id = m.manufacturers_id, products_to_categories p2c left join specials s on p.products_id = s.products_id where p.products_status = '1' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '1' and p2c.categories_id = '21' [TEP STOP]
Recommended Posts
Archived
This topic is now archived and is closed to further replies.