fumocamel Posted March 31, 2006 Report Share Posted March 31, 2006 I installed xt commerce on mysql 5 but i have some problem i read on internet that xt commerce have some problem with mysql 5 join function this is one of the errors 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 ') on p.manufacturers_id = m.manufacturers_id' at line how can i resolve this? thanks! Link to comment Share on other sites More sharing options...
nrrlh Posted March 31, 2006 Report Share Posted March 31, 2006 Version off the Shop ??? Link to comment Share on other sites More sharing options...
fumocamel Posted March 31, 2006 Author Report Share Posted March 31, 2006 version 3.x ..... Link to comment Share on other sites More sharing options...
nrrlh Posted March 31, 2006 Report Share Posted March 31, 2006 With mysql 5 appear by the stricter SQL 03 standardumsetzungen fehler. The following Datein substitute: ~/includes/modules/default.php ~/products_new.php ~/product_reviews_info.php http://www.xt-commerce.com/forums/index.php?showtopic=27302 By Norbert Link to comment Share on other sites More sharing options...
fumocamel Posted March 31, 2006 Author Report Share Posted March 31, 2006 thanks but your link don't work or i can't get in? thanks Link to comment Share on other sites More sharing options...
nrrlh Posted March 31, 2006 Report Share Posted March 31, 2006 Oh you can use him only as a sponsor to By Norbert Link to comment Share on other sites More sharing options...
fumocamel Posted April 1, 2006 Author Report Share Posted April 1, 2006 Thanks but now i can not be a sponsor, cause don't have money. So how can i resolve this problem? I translate the admin section in italian if u want. Marco Link to comment Share on other sites More sharing options...
polkhigh33 Posted April 1, 2006 Report Share Posted April 1, 2006 So how can i resolve this problem? use mysql4. Link to comment Share on other sites More sharing options...
fumocamel Posted April 1, 2006 Author Report Share Posted April 1, 2006 I installed xt commerce on a shared server. I don't know if i can ask a downgrading, from MySql 5 to MySql 4. Believe me, it's not a problem about money, but i just start to make this kind of things (delevoping php, installing this software, ecc...) and now i don't have money to be a sponsor. Thanks Link to comment Share on other sites More sharing options...
polkhigh33 Posted April 1, 2006 Report Share Posted April 1, 2006 normally you can decide if you create a database using mysql 5 or 4, on all providers i have seen so far. Link to comment Share on other sites More sharing options...
fumocamel Posted April 1, 2006 Author Report Share Posted April 1, 2006 I have to ask to service provider. In this case is Aruba www.aruba.it very cheap service but not so good. Thanks Link to comment Share on other sites More sharing options...
fumocamel Posted April 1, 2006 Author Report Share Posted April 1, 2006 u can see my errors 1054 - Unknown column 'p.products_vpe' in 'field list' http://lnx.italsiam.biz Link to comment Share on other sites More sharing options...
fumocamel Posted April 1, 2006 Author Report Share Posted April 1, 2006 I think i resolve.... i think.... bye :tongue: Link to comment Share on other sites More sharing options...
fumocamel Posted April 6, 2006 Author Report Share Posted April 6, 2006 i have this 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 'products_description pd left join specials s on (p.products_id = s.products_id) ' at line 1 in advanced_search_result.php i don't understand the difference between mysql 5.x to 4.x thanks Link to comment Share on other sites More sharing options...
fumocamel Posted April 7, 2006 Author Report Share Posted April 7, 2006 i resolve this problem in advanced_search_result.php from $from_str = "from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m using(manufacturers_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c"; to $from_str = "from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m using(manufacturers_id) INNER JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id INNER JOIN " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c"; Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.