Page 40 of 218 FirstFirst ... 3038394041425090140 ... LastLast
Results 391 to 400 of 2177
  1. #391
    Join Date
    Jan 2005
    Location
    Amsterdam, NL
    Posts
    50
    Plugin Contributions
    0

    Idea or Suggestion Re: Fast and Easy Checkout for Zen Cart

    I found the problem.
    My error.

    In the sql patch I forgot:
    # Remove the #s below if you have not already installed FEC

    And I installed 1.2.6 and not the latest one.

    Thats why I missed a lot of extra's and whas not working as it should be.

    I updated the SQL and the version now.

    Thanks and keep on the good work.

  2. #392
    Join Date
    Jan 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Does Fast and Easy Checkout support the use of gift certificates? I'm currently using COCOA and can therefore not use gift certificates.

  3. #393
    Join Date
    Feb 2008
    Posts
    569
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Okay I just updated Easy Signup and Login from 1.16 to 1.19, I need to put FEC on my site, I know i should have put FEC first but I had Easy Signup for over a year... How do I installed FEC with Easy Signup already installed? I read to delete the two lines containing delete in the FEC sql..what about the admin/order.php and packingslip.php do you over write them? or merge? if you merge them how do you because i looked at them both and they both contain about 50% the same...
    ---Also never figured out the show with confience box..have been reading every where when i installed easy signup and login there has never been any options in the admin? Normal?

  4. #394
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,555
    Plugin Contributions
    70

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by ryanb4614 View Post
    Okay I just updated Easy Signup and Login from 1.16 to 1.19, I need to put FEC on my site, I know i should have put FEC first but I had Easy Signup for over a year... How do I installed FEC with Easy Signup already installed? I read to delete the two lines containing delete in the FEC sql..what about the admin/order.php and packingslip.php do you over write them? or merge? if you merge them how do you because i looked at them both and they both contain about 50% the same...
    ---Also never figured out the show with confience box..have been reading every where when i installed easy signup and login there has never been any options in the admin? Normal?
    Try using a Windows program called WinMerge.

  5. #395
    Join Date
    Dec 2008
    Location
    San Fran
    Posts
    382
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Can somebody please help me understand the difference between Easy sign up and login and FEC? I see many people have both installed... is this necessary?

    I'm not sure how COWOA works with either of these as well, if somebody could enlighten me I would REALLY appreciate it.

  6. #396
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Maybe start by reading here:
    http://www.zen-cart.com/index.php?ma...roducts_id=845

    Each supplied mod has a description that should make it clear what it is for. If it still is not clear, download and read the included readme.txt that most contributors supply. Just look for the mods in question in the Free Software Add On.
    Live and learn... the Zen way.

  7. #397
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I have been using this mod in 1 page checkout format for some time now until recently when i decided to use direct bank deposit as a payment method in which i disable one page checkout so customers could see the bank details on confirmation page... Anyway i noticed i get an error when checing out:

    Line: 111
    Char: 3
    Error: object required
    Code: 0
    URL:https://www.truwater.com.au/index.ph...c_confirmation

    Anyone know what this could be?

  8. #398
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Credit Card CVV Number
    Minimum length of credit card CVV number id set to 3

    BUT customers can check out without giving the CVV, why?

    Collect CVV is set to true as well. Does this have to do with Easy Checkout?

    This function works with the standard checkout steps at
    Step 2 of 3 - Payment Information
    Errors have occurred during the processing of your form.
    Please make the following corrections:
    * The CVV number must be at least 3 characters.

    This is what should happen with the mod as well I assume, but it is not working.
    Live and learn... the Zen way.

  9. #399
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,555
    Plugin Contributions
    70

    Default Re: Fast and Easy Checkout for Zen Cart

    mydanilo, I would need to look at your server, can you please send a PM or email to webmaster AT numinix DOT com.

  10. #400
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    numinix, thanks for offering. Turns out that if I use cc.php offline credit card mod it works fine with the cvv warning. I want to use the qbms.php quickbooks merchant payment module. Seems like the verification JavaScript is not working correctly. I think it was made for a older zen version where no pop up warning was used. I would love to have it modified to give me the same pop up warning. Here is the script that needs to be modified:

    HTML Code:
      // function javascript_validation: Validates the submitted payment details.
       function javascript_validation() {
          $js = '  if (payment_value == "' . $this->code . '") {' . "\n" .
                '    var cc_owner = document.checkout_payment.qbms_cc_owner.value;' . "\n" .
                '    var cc_number = document.checkout_payment.qbms_cc_number.value;' . "\n" .
                '    if (cc_owner == "" || cc_owner.length < ' . CC_OWNER_MIN_LENGTH . ') {' . "\n" .
                '      error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_OWNER . '";' . "\n" .
                '      error = 1;' . "\n" .
                '    }' . "\n" .
                '    if (cc_number == "" || cc_number.length < ' . CC_NUMBER_MIN_LENGTH . ') {' . "\n" .
                '      error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_NUMBER . '";' . "\n" .
                '      error = 1;' . "\n" .
    			'    if (' . MODULE_PAYMENT_QBMS_VERIFY_WITH_CVV2 . ' == "True") {' . "\n" .
    			'      var cc_cvv2 = document.checkout_payment.qbms_cc_cvv2.value;' . "\n" .
    			'      if (cc_cvv2 == "" || cc_number.length < ' . 3 . ') {' . "\n" .
                '        error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_CVV2 . '";' . "\n" .
                '        error = 1;' . "}\n" .
                '      }' . "\n" .  
                '    }' . "\n" .
                '  }' . "\n";
    
          return $js;
    I know you are a programmer. Would you agree that this is the problem?
    Live and learn... the Zen way.

 

 

Similar Threads

  1. Replies: 4
    Last Post: 25 Jan 2012, 07:37 PM
  2. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  3. Go To Checkout Error - with Fast and Easy Checkout installed
    By RFree190 in forum General Questions
    Replies: 3
    Last Post: 10 Mar 2009, 07:08 AM
  4. checkout page not redirect (Fast and Easy Checkout module)
    By wowemall in forum Addon Templates
    Replies: 0
    Last Post: 27 Sep 2008, 02:36 PM
  5. Fast and Easy Checkout
    By cmes in forum General Questions
    Replies: 5
    Last Post: 15 Feb 2008, 04:07 PM

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