Page 6 of 42 FirstFirst ... 4567816 ... LastLast
Results 51 to 60 of 419
  1. #51
    Join Date
    Mar 2008
    Posts
    42
    Plugin Contributions
    0

    Default Re: [BETA] QuickBooks Merchant Service

    Quote Originally Posted by dejavu View Post
    I downloaded this app.

    When I go onto the payment page and the QBMS module loads, I get a syntax error } expected on line 293.

    Has anyone else had this problem?
    Yes Dejavu!

    I didn't get the error in my install, but looking at the qbms.php file I see its missing too. I checked the version for OSCommerce from which this was ported and see that it was carried over from there. The latest revision of the qbms.php for OSCommerce corrects this.

    Old code was
    Code:
        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";
    The correct version should be:
    Code:
        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";
    Clive.

  2. #52
    Join Date
    Mar 2008
    Posts
    76
    Plugin Contributions
    0

    Default Re: [BETA] QuickBooks Merchant Service

    Also folks,

    I'm using a godaddy hosted account. I haven't tested the curl section out, but I think the modifications go something like this:

    Code:
    	$clientURL = curl_init();
    
    	curl_setopt($clientURL, CURLOPT_POST, 1);
    	curl_setopt($clientURL, CURLOPT_RETURNTRANSFER, 1);
    	curl_setopt($clientURL, CURLOPT_CUSTOMREQUEST, 'POST');
    	curl_setopt($clientURL, CURLOPT_URL, $qbmsURL);
    	curl_setopt($clientURL, CURLOPT_TIMEOUT, 60);
    	curl_setopt($clientURL, CURLOPT_HTTPHEADER, $PHP_Header);
    	curl_setopt($clientURL, CURLOPT_POSTFIELDS, $qbmsRequest);
    	curl_setopt($clientURL, CURLOPT_VERBOSE, 1);
    	curl_setopt($clientURL, CURLOPT_SSL_VERIFYPEER, 1);
    //	if (MODULE_PAYMENT_QBMS_HOSTEDORDESKTOP == 'Hosted') {
    //	    curl_setopt($clientURL, CURLOPT_SSLCERT, $qbmsCert);
    //    }
       curl_setopt($clientURL, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); //??
       curl_setopt ($clientURL, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
       curl_setopt ($clientURL, CURLOPT_PROXY,"http://proxy.shr.secureserver.net:3128");
    //    if (MODULE_PAYMENT_QBMS_IP_ADDRESS != '') {
    //    	curl_setopt($clientURL, CURLOPT_INTERFACE, MODULE_PAYMENT_QBMS_IP_ADDRESS);
    //    }
    
    
    Notice I added the proxy stuff.
    
    I hope it works.  They don't have an emoticon for crossing your fingers.
    	$qbmsResponse = curl_exec($clientURL);

  3. #53
    Join Date
    Mar 2008
    Posts
    76
    Plugin Contributions
    0

    Default Re: [BETA] QuickBooks Merchant Service

    I'm getting no errors. I get the success page and an order number.

    However, there have been no charges to my credit card and no transactions posted to the merchant account.

    I'm not sure why it's all seems to go smoothly, yet nothing is happening.

  4. #54
    Join Date
    Mar 2008
    Posts
    76
    Plugin Contributions
    0

    Default Re: [BETA] QuickBooks Merchant Service

    My appid and login were wrong. I was using the merchant account login, not the app login.

    Transactions posting well to merchant's accounts!

    Thank you.

    It took me a while to figure out you can use desktop security on a hosted account. Those terminologies are confusing.

  5. #55

    Default Re: [BETA] QuickBooks Merchant Service

    Quote Originally Posted by dejavu View Post
    My appid and login were wrong. I was using the merchant account login, not the app login.

    Transactions posting well to merchant's accounts!

    Thank you.

    It took me a while to figure out you can use desktop security on a hosted account. Those terminologies are confusing.

    If you do anything in Inuit you will learn everything they do is confusing and ###### backwards...

    Personally I hate QBMS, and my client is wanting to Redo their site soon, and I am tring very very very hard to get them to drop QBMS like a bad habit and move to a REAL gate way like Authorize.net

  6. #56
    Join Date
    Feb 2007
    Location
    Sacramento, CA
    Posts
    64
    Plugin Contributions
    1

    Default Re: [BETA] QuickBooks Merchant Service

    Just wanted to throw this out there:

    In my experience, IF AT ALL POSSIBLE, use the "Desktop" version of the Quickbooks Merchant Service module instead of the "Hosted" version. The Desktop version is far easier to install and get set up. Just make sure you're on an SSL connection, and your transactions will be just as secure as if you're using any other credit card processor.

  7. #57
    Join Date
    Mar 2008
    Posts
    76
    Plugin Contributions
    0

    Default Re: [BETA] QuickBooks Merchant Service

    Also, but in validate: Add quotes:

    Code:
    if ("' . MODULE_PAYMENT_QBMS_VERIFY_WITH_CVV2 . '" == "True") {' . "\n" .

  8. #58
    Join Date
    Jan 2008
    Posts
    173
    Plugin Contributions
    0

    link problem Re: [BETA] QuickBooks Merchant Service

    Is this module similar to the T-Hub software for Quickbooks?

    http://www.atandra.com/Prod_THub.htm

  9. #59
    Join Date
    Mar 2008
    Posts
    76
    Plugin Contributions
    0

    Default Re: [BETA] QuickBooks Merchant Service

    This one worked fine with a few adjustments.

    By the way author of QuickBooks Merchant Service, do you have a donation location?

    I won't make a donation yet, but I'll put you on my list.

  10. #60
    Join Date
    May 2008
    Posts
    3
    Plugin Contributions
    0

    Default Re: [BETA] QuickBooks Merchant Service

    Hello, I have a customer that already has an appID and App Login. can I use their information to get a connection ticket?

 

 
Page 6 of 42 FirstFirst ... 4567816 ... LastLast

Similar Threads

  1. Connecting to Quickbooks Merchant Services
    By bobbabuoy in forum Basic Configuration
    Replies: 1
    Last Post: 7 Feb 2011, 11:58 AM
  2. QuickBooks Merchant Service Users - Upgrade to 1.9a
    By cptok in forum Addon Payment Modules
    Replies: 0
    Last Post: 27 May 2009, 08:39 AM
  3. QuickBooks Merchant Service
    By cowboyfred in forum Addon Payment Modules
    Replies: 0
    Last Post: 19 Feb 2008, 06:26 AM
  4. QuickBooks Merchant Service
    By Pochon in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 1 Jan 2008, 07:29 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