All works great except for IE browsers (version 8).. go figure. Anyway, I get a "Loading Cart" message that 'sticks' only on the cart/checkout page. All other pages are fine, all other browsers are fine.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

nelslynn’s picture

Edit to the comment above. Firefox produces the same issue (both Mac and PC), but only with an anonymous users.... works great when logged in. I'll also note that my cart/checkout page is the only secure page (https:), and I'm use the module uc_ssl.

redhatmatt’s picture

in secure pages set ignore list with: uc_ajax_cart*
I'm not familiar with uc_ssl yet

stewart.adam’s picture

Does it work correctly if you add uc_ajax_cart* to the list of paths in the uc_ssl configuration as redhatmatt mentioned?

bellagio’s picture

Issue summary: View changes

i could not make it work with ubercart ssl module.
Since there are no ignore page setting under ubercart ssl module, i tried (no knowing what i was doing, i was just trying...)

<?php
mymodulename_exclude_ssl_paths()
{
   $paths = array(
   'Description of a path'  =>  ' uc_ajax_cart*',
   );
  return $paths
}
?>

What it does is making uc_ajax_cart page not https, if your admin paths are set https.
(http://www.example.com/admin/store/settings/uc_ajax_cart VS https://www.example.com/admin/store/settings/uc_ajax_cart)

If anyone find a solution, please share with us..

fotisp’s picture

try to apply this patch https://drupal.org/node/1354068
to the uc_ssl module
Then add to the uc_ssl_exclude_ssl_switch_paths() 'ajax Cart block' => '/uc_ajax_cart/show'

bellagio’s picture

uc_ssl_exclude_ssl_switch_paths() is for drupal 7. is it working with 6?