Page 4 of 5 FirstFirst ... 2345 LastLast
Results 31 to 40 of 41
  1. #31
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Quote Originally Posted by frank18 View Post
    That image also shows up for other payment modules (eg PayPal ... slow response etc) - never had this issue ever since.
    Thank you! I'll do that as soon as I find a nice image.

  2. #32
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Quote Originally Posted by frank18 View Post
    <div class="centeredContent"><img id="actionImg" src = "images/processing_animation.gif" class="hiddenField" />
    Does the image only show if there is a delay? Can't see it when I do a test order.

  3. #33
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Quote Originally Posted by robbie269 View Post
    Does the image only show if there is a delay? Can't see it when I do a test order.
    Yes, it only shows if there is a delay. Can't do a test using Direct Bank Deposit or similar. Best to do a test with PayPal as you can still cancel when you get to PP.

  4. #34
    Join Date
    Apr 2016
    Posts
    18
    Plugin Contributions
    0

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Is there anyway to pass onto the eway invoice text the attributes/sizing of the product rather than just the product name?

  5. #35
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Quote Originally Posted by frank18 View Post
    Yes, it only shows if there is a delay. Can't do a test using Direct Bank Deposit or similar. Best to do a test with PayPal as you can still cancel when you get to PP.

    If it still does not work for you then open

    includes/modules/pages/checkout_confirmation/jscript_main.php

    and find

    PHP Code:
    function submitonce() 

    Change that function to read

    PHP Code:
    function submitonce() 

      var 
    button document.getElementById("btn_submit"); 
      var 
    img document.getElementById("actionImg"); 
      
    button.style.cursor="wait"
      
    button.disabled true
      
    button.className 'hiddenField'
      
    img.className ''
      
    setTimeout('button_timeout()'5000); 
      return 
    false

    Hope this helps

  6. #36
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Quote Originally Posted by ivopivo View Post
    Is there anyway to pass onto the eway invoice text the attributes/sizing of the product rather than just the product name?
    The eWay developers should have the right answer for you - I have not played with this....

  7. #37
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Quote Originally Posted by frank18 View Post
    Happened to me once (customer hit the button twice) and implemented this (wait wheel or similar) in a 1.5.4 store.

    Found an animated "We are processing your payment.... Please Wait" image in a Google image search (use whatever suits you but observe the Copyright notice). Named that image processing_animation.gif and placed it into the /images folder for use with any template.

    Then open includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_confirmation_default.php - scroll to the bottom of the file and find

    PHP Code:
    <?php 
      
    echo zen_draw_form('checkout_confirmation'$form_action_url'post''id="checkout_confirmation" onsubmit="submitonce();"'); 
     
      if (
    is_array($payment_modules->modules)) { 
        echo 
    $payment_modules->process_button(); 
      } 
    ?> 
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDERBUTTON_CONFIRM_ORDER_ALT'name="btn_submit" id="btn_submit"') ;?></div> 
    </form> 
    <div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE '<br />' TEXT_CONTINUE_CHECKOUT_PROCEDURE?></div>
    change to

    PHP Code:
    <?php 
      
    echo zen_draw_form('checkout_confirmation'$form_action_url'post''id="checkout_confirmation" onsubmit="submitonce();"'); 
     
      if (
    is_array($payment_modules->modules)) { 
        echo 
    $payment_modules->process_button();   
      }     
    ?> 
    <div class="centeredContent"><img id="actionImg" src = "images/processing_animation.gif" class="hiddenField" /></div> 
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDERBUTTON_CONFIRM_ORDER_ALT'name="btn_submit" id="btn_submit"') ;?><br /><?php echo '<b>Press ONLY ONCE ....</b>';?></div> 
    </form> 
    <div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE '<br />' TEXT_CONTINUE_CHECKOUT_PROCEDURE?></div>
    That image also shows up for other payment modules (eg PayPal ... slow response etc) - never had this issue ever since.

    If the image does not show when the order confirmation button is clicked the open the file

    includes/modules/pages/checkout_confirmation/jscript_main.php

    and find

    PHP Code:
    function submitonce() 
    Change the entire function to read

    PHP Code:
    function submitonce() 

      var 
    button document.getElementById("btn_submit"); 
      var 
    img document.getElementById("actionImg"); 
      
    button.style.cursor="wait"
      
    button.disabled true
      
    button.className 'hiddenField'
      
    img.className ''
      
    setTimeout('button_timeout()'5000); 
      return 
    false

    You can change the timeout value to anything lesser or more.

    Hope this helps.

  8. #38
    Join Date
    Dec 2005
    Posts
    64
    Plugin Contributions
    1

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    I am getting the following error message on the checkout confirmation page:

    CreateAccessCode SOAP Error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://api.ewaypayments.com/soap.asmx' : failed to load external entity "https://api.ewaypayments.com/soap.asmx"

    I have tried changing the request method to rest in the config.ini file but I still receive the error.

    Has anyone got this working with zen cart 1.5.5e?

  9. #39
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Quote Originally Posted by etrader View Post
    I am getting the following error message on the checkout confirmation page:

    CreateAccessCode SOAP Error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://api.ewaypayments.com/soap.asmx' : failed to load external entity "https://api.ewaypayments.com/soap.asmx"

    I have tried changing the request method to rest in the config.ini file but I still receive the error.

    Has anyone got this working with zen cart 1.5.5e?
    Works fine here (1.5.5e). Suggest you get in touch with eWay tech dept.

  10. #40
    Join Date
    Jul 2020
    Location
    Melbourne
    Posts
    1
    Plugin Contributions
    0

    Default Re: eWAY Payment Gateway - Rapid 3.0 API

    Hi Guys,
    I have signed upto Eway as the gateway for card payments. They sent me a mail where i was able to generate the API codes and password. Also, in a separate mail i got a plugin. What do i do now? How do i insert the plugin? I am not a IT pro. Do i copy and paste this in a page or what is the process. Please guide me. Thanks in advance.
    Last edited by WSLA; 10 Jul 2020 at 02:44 AM. Reason: spelling error

 

 
Page 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. Pin Payments Payment Gateway [Support Thread]
    By chrisdahl in forum Addon Payment Modules
    Replies: 25
    Last Post: 6 Feb 2019, 07:06 AM
  2. v155 Billplz Payment Gateway - Malaysia [Support Thread]
    By wanzulnet in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 25 Jul 2016, 01:03 AM
  3. v154 PagaMasTarde payment gateway support thread
    By afatsini-pmt in forum Addon Payment Modules
    Replies: 0
    Last Post: 19 Nov 2015, 01:17 PM
  4. v151 checkout page problem using eWAY-rapid payment module
    By tpeck in forum Addon Payment Modules
    Replies: 13
    Last Post: 27 Jun 2014, 09:39 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR