204HOE Posted January 12, 2006 Posted January 12, 2006 I keep getting this error at Admin/orders 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 o.orders_id, o.customers_name, o.payment_method, o.date_purchased, o.last_modified, o.currency, o.currency_value, s.orders_status_name, ot.text as order_total from orders o left join orders_total ot on (o.orders_id = ot.orders_id), orders_status s where o.orders_status = s.orders_status_id and s.language_id = '1' and ot.class = 'ot_total' order by o.orders_id DESC limit -20, 20
JEWbacca Posted January 13, 2006 Posted January 13, 2006 This is a known bug for the old version of osC... you can upgrade to the new version or just follow these steps to fix it: in catalog/admin/includes/classes/split_page_results.php change: $sql_query .= " limit " . $offset . ", " . $max_rows_per_page; to: $sql_query .= " limit " . max($offset, 0) . ", " . $max_rows_per_page; in catalog/includes/classes/split_page_results.php change: $this->sql_query .= " limit " . $offset . ", " . $this->number_of_rows_per_page; to: $this->sql_query .= " limit " . max($offset, 0) . ", " . $this->number_of_rows_per_page; Good Luck! Nate
Recommended Posts
Archived
This topic is now archived and is closed to further replies.