Announcement

Collapse
No announcement yet.

Problem advancing from os000001.pl to get past cm0001.pl for payment pages in v6.1

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Problem advancing from os000001.pl to get past cm0001.pl for payment pages in v6.1

    I have a v6.0 site upgraded to 6.11 and a problem now occurs once I have added products to my cart and I click next to go on to the next page.

    I get ok to the checkout page /os000001.pl?ACTION=Start%21

    Select country etc

    from here clicking next always now seems to drop me back to the html product page and not the next payment page.

    I am not sure what has gone wrong, only seems to have started this after my 6.1 upgrade.

    Any ideas on this would be a huge help?

    Graeme.

    #2
    This only happens if you have chosen product quantity on the product page.

    It was supposed to be getting fixed and I thought it was.

    Try changing a page to not ask for quantities and order from it.
    Owner of a broken heart

    Comment


      #3
      Doesnt seem to work.....

      Thanks for that thought.

      None of my product pages specify a quantity just the product name and an add to cart button, You can add the products ok, you then see them in the first checkout screen, (proceed to checkout) click next and you see a breakdown of the cart with at this point a "quanity" text field auto filled to 1 in the table.

      Choose you county, shipping to same address checkbox and two buttons, cancel and next; click next and "zip" off you pop, refers you back to the product screen where you choose your product.
      Not the next checkout screen.

      Is this a known issue, surely there is a fix as no-one would ever be able to order anything. Only now started after the 6.11 and 6.2 updater.

      Graeme.

      Comment


        #4
        I find it strange that you are only now suffering this problem

        http://www.actinicdownloads.com/v6/changes.htm says the following where you can read the full note


        Summary of changes in release 6.1.1

        The online cart was displaying oddly (although content and prices are correct) for products with optional components marked as 'Component as a Separate Order Line'. A quantity field was appearing next to the component incorrectly. This is now fixed. Ref: a_ss/293"


        I misread your original post but have never heard of this error and I cant recreate it
        Owner of a broken heart

        Comment


          #5
          Sorted the problem, I forgot that I had to make an adjustment to the perl script 'OrderScript.pl' to allow me to use my own buttons instead of the grey ones for the checkout orderpages:


          @Response = ReadAndParseBlobs(); # read the catalog blobs
          ($Status, $Message) = @Response; # parse the response
          if ($Status != $::SUCCESS)
          {
          ACTINIC::ReportError($Message, ACTINIC::GetPath());
          }


          if(!defined $::g_InputHash{"ACTION"})
          {
          if(defined $::g_InputHash{"ACTION_BACK.x"})
          {
          $::g_InputHash{"ACTION"} = ACTINIC::GetPhrase(-1,503);
          }
          elsif(defined $::g_InputHash{"ACTION_CANCEL.x"})
          {
          $::g_InputHash{"ACTION"} = ACTINIC::GetPhrase(-1,505);
          }
          elsif(defined $::g_InputHash{"ACTION_NEXT.x"})
          {
          $::g_InputHash{"ACTION"} = ACTINIC::GetPhrase(-1,502);
          }
          }


          This of course was replaced in the update.

          Thanks for you help!

          Graeme.

          Comment

          Working...
          X