Running ZC 1.3.9c with many mods. I've been doing local development using XAMPP (PHP v5.2.9, mySQL v5.0.67-community) running on my Windows 7 machine and recently took the plunge to migrate up to my server which runs Linux 2.6.28.8-20100125a-iscsi-ntacker-fasync-mremap-grsec (PHP v5.2.13, mySQL v5.0.81-log).
I've added some fields to the order table and the following query, which works fine in a local host environment and also returns the correct results when pasted into the phpMyAdmin for my served-store's database, doesn't return the correct results from my store (only returns the last result of 8):
SELECT o.check_in_date, o.number_of_days FROM orders o WHERE o.check_in_date >= NOW() OR o.check_out_date >= NOW() ORDER BY o.check_in_date
I've tried changing the SQL cache method to 'none' from 'file', but that doesn't seem to make a difference.
Does anyone have any ideas?



