did you ever resolve your problem?
did you ever resolve your problem?
https://www.zen-cart.com/tutorials/index.php?article=63mine is a 500 error when clicking through checkout to get to the shipping page I get the 500 error there
Zen-Venom Get Bitten
I had that error because something is wrong with the icon I was trying to display for free shipping. Do you see anything wrong with this line:
$this->icon = $template->get_template_dir('free_shipping.jpeg', DIR_WS_TEMPLATE, $current_page_base,'images/icons'). '/' . 'free_shipping.jpeg';
If I commented it out, everything works fine. I do have the image loaded
The only instance of this I could quickly locate is as follows
Code:$this->icon = $template->get_template_dir('shipping_usps.gif', DIR_WS_TEMPLATE, $current_page_base,'images/icons'). '/' . 'shipping_usps.gif'; if (zen_not_null($this->icon)) $this->quotes['icon'] = zen_image($this->icon, $this->title);
Zen-Venom Get Bitten