Re: Fast and Easy Checkout for Zen Cart
Sorry, at the time of testing the latest version posted at zen-cart.com was FEC v1.16 and I didn't know there was newer version at numinix.com
But I was able to reproduce the problem using FEC v1.22 as well.
Can anyone confirm it or suggest any ideas how to resolve it?
Thanks!
Re: Fast and Easy Checkout for Zen Cart
Why would we ALL OF THE SUDDEN be getting a white page on checkout? I had a customer from Brazil try to checkout, and they get a white page when they go to the checkout page.
When you're on the shopping cart page and Estimate Shipping, that comes up blank as well. If I change the address to be a USA address, it works.
We didn't do any updates on our end, and this was all working fine. Any idea why? Did the UPS or USPS make any updates to their modules which would cause FEC to not work? Any sort of debugging I can do on this end to see why the page isn't being displayed?
Re: Fast and Easy Checkout for Zen Cart
UPDATE: I enabled the debugging and I see the following error:
[29-Oct-2008 13:59:25] PHP Fatal error: Cannot use string offset as an array in /home/mjmmagic/public_html/store_test/includes/modules/shipping/upsxml.php on line 262
Still trying to figure out where to go from here, but thought I'd give you an update.
Re: Fast and Easy Checkout for Zen Cart
I went to that file (upsxml.php) and saw the following function which was throwing the error:
Code:
if (isset($this->servicesTimeintransit[$type])) {
$eta_array = explode("-", $this->servicesTimeintransit[$type]["date"]);
$months = array (" ", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
$eta_arrival_date = $months[(int)$eta_array[1]]." ".$eta_array[2].", ".$eta_array[0];
// $_type .= ", ETA: ".$eta_arrival_date;
$_type .= "";
}
I don't know what could have possibly changed to cause this, but we certainly didn't do anything. So I commented that function out and now it APPEARS to be working. If you do hear any information about a UPS code change, please let us know.
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
Jeff_Mash
I went to that file (upsxml.php) and saw the following function which was throwing the error:
Code:
if (isset($this->servicesTimeintransit[$type])) {
$eta_array = explode("-", $this->servicesTimeintransit[$type]["date"]);
$months = array (" ", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
$eta_arrival_date = $months[(int)$eta_array[1]]." ".$eta_array[2].", ".$eta_array[0];
// $_type .= ", ETA: ".$eta_arrival_date;
$_type .= "";
}
I don't know what could have possibly changed to cause this, but we certainly didn't do anything. So I commented that function out and now it APPEARS to be working. If you do hear any information about a UPS code change, please let us know.
Try posting your error in the UPS thread, wherever that may be...
Re: Fast and Easy Checkout for Zen Cart
I followed the installation steps, but after adding
Code:
<body id="<?php echo $body_id . 'Body'; ?>"<?php echo (FEC_ONE_PAGE == 'true' && $_GET['main_page'] == 'fec_confirmation' ? ' onLoad="document.fec_confirmation.submit()"' : ($zv_onload != '' ? ' onload="'.$zv_onload.'"' : '')); ?>>
to tpl_main_page.php all (entire site) side boxes disappear.
I have a TemplateMonster.com template and Simple SEO URL installed.
Any ideas?
Thanks
Re: Fast and Easy Checkout for Zen Cart
You've probably pasted it into your code wrong or forgot to REPLACE, rather than ADD.
Anyways, upgrade to v1.23 which doesn't require this edit to be made anymore.
Re: Fast and Easy Checkout for Zen Cart
Hello everyone.
I've installed the mod and it works fine in my store. One issue though, I received an order after installing the mod and the shipping weight was incorrect. Instead of multiplying the weight of the item according to the quantity ordered, it just reflected the weight of 1 item instead of the 5 ordered.
Has anyone else experienced something similar? any fix for this would be really appreciated it.
MV./
Re: Fast and Easy Checkout for Zen Cart
What shipping module was used? Were any of the products always free shipping?
Re: Fast and Easy Checkout for Zen Cart
I use the USPS shipping module, no free shipping on the product purchased or any product for that matter. The client purchased 5 bars of organic soap. Each bar weights 4oz. Instead of calculating 20oz for shipping weight the shipping was calculated based on 4oz as if the customer was buying just 1 item. This was not happening before I installed the mode, so I know everything was working with shipping weight calculation.
Thank you for looking into it.