
PgMarket is developed using PostgreSQL 7.0.x
However, I try to achieve compatibility with PostgreSQL 6.5.x

Actually, PgMarket uses JOIN, which is not supported by PostgreSQL 6.5.x
To overcome this problem, you have to modify two queries in
admin/ordersca.php and admin/orderscc.php

For instance, you have to find queries using JOIN and replace

FROM	order_items oi JOIN products p ON (oi.product_id = p.id)
WHERE	order_id = '$id'

with

FROM	order_items oi, products p
WHERE	oi.product_id = p.id AND order_id = '$id'

Marco Pratesi
--
http://www.telug.it
pratesi@telug.it

