n3or Posted January 23, 2006 Report Share Posted January 23, 2006 Hi, wenn ich im Admininterface nen Hersteller erstellen will, bekomme ich folgende fehlermeldung: Hersteller 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 manufacturers_id, manufacturers_name, manufacturers_image, date_added, last_modified from manufacturers order by manufacturers_name limit -20, 20 [XT SQL Error] Und wenn ich im Index ne Kategorie zum Anzeigen ausw?hl bekomme ich folgende Fehlermeldung: 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 = '2' and p2c.categories_id = '3' ORDER BY pd.products_name ASC [XT SQL Error] Bei mir l?uft MySQL 5 und ich verwende als Server XAMPP f?r Windows, der Shop basiert auf der XT-Commerce Version v2.0 RC1.2. PhP l?uft bei mir Version 4. Hoffe ihr k?nnt helfen. mfg n3or Link to comment Share on other sites More sharing options...
n3or Posted January 24, 2006 Author Report Share Posted January 24, 2006 Bitte helft mir... Ich brauche es dringend!!! BITTE Link to comment Share on other sites More sharing options...
nomore Posted January 29, 2006 Report Share Posted January 29, 2006 Hallo, bei mir hat folgendes geholfen. in [catalog]/admin/includes/classes/split_page_results.php folgenden Code suchen: $offset = ($max_rows_per_page * ($current_page_number - 1)); $sql_query .= " limit " . $offset . ", " . $max_rows_per_page; und mit diesem ersetzen: $offset = ($max_rows_per_page * ($current_page_number - 1)); if ($offset < 0) { $offset = 0; } $sql_query .= " limit " . $offset . ", " . $max_rows_per_page; Ich hoffe ich konnte dir damit helfen. Link to comment Share on other sites More sharing options...
n3or Posted January 29, 2006 Author Report Share Posted January 29, 2006 Danke das hat geholfen, allerdings habe ich jetzt eine andere Fehlermeldung, diese h?ngt aber mit der falschen DB version zusammen (MySQL 5.x.x statt 4.x.x). Aber ich habe nen Hoster gefunden welcher MySQL 4 Anbietet. Viele Gr??e und Danke n3or Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.