Quote Originally Posted by rkhan3366 View Post
Hi,
I've been struggling with updating my Zencart for about 3 weeks now. When I fix one thing another seems to break. Currently I am getting this in the logs after i go to the checkout page :

Undefined constant "MODULE_SHIPPING_ZIPSHIP_ZONE" in /home3/genesbea/public_html/includes/modules/shipping/zipship.php:77

Anybody got any ideas as to what is going on here please?

Thanks

PS My ZenCar version is currently : 1.5.8a/ The ZipShip version is 3.1 As suggested I have uploaded an image of the settings in my Modules section.Click image for larger version. 

Name:	Screenshot 2024-04-16 153442.jpg 
Views:	18 
Size:	20.3 KB 
ID:	20586
Interesting, any idea what version of ZipShip you upgraded from?

To correct your issue, navigate to your admin's Tools :: Install SQL Patches and run this query to add that missing setting:
Code:
INSERT INTO configuration
(configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added)
VALUES
('Shipping Zone', 'MODULE_SHIPPING_ZIPSHIP_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', 6, 6, 'zen_get_zone_class_title', 'zen_cfg_pull_down_zone_classes(', now());