CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using CiviContribute (Moderator: Donald Lobo) »
  • First Data Processing
Pages: 1 [2]

Author Topic: First Data Processing  (Read 5856 times)

bdanza

  • I post frequently
  • ***
  • Posts: 135
  • Karma: 3
  • CiviCRM version: 3.4.6
  • CMS version: Joomla 1.5, Drupal 6.2x
Re: First Data Processing
February 04, 2011, 12:46:54 pm
yep, I checked both in the CiviCRM backend, and directly in the Mysql 'civicrm_payment_processor' table

bdanza

  • I post frequently
  • ***
  • Posts: 135
  • Karma: 3
  • CiviCRM version: 3.4.6
  • CMS version: Joomla 1.5, Drupal 6.2x
Re: First Data Processing
February 04, 2011, 12:56:11 pm
Ok, so I did it the manual way, I replaced

Code: [Select]
/**********************************************************
         * define variables for connecting with the gateway
         **********************************************************/
       
        $key  = $this->_paymentProcessor['password']; # Name and location of certificate file
        $requestFields["configfile"] = $this->_paymentProcessor['user_name'];      # Your store number
        $port = "1129";
        $host = $this->_paymentProcessor['url_site'].":".$port."/LSGSXML";

with

Code: [Select]
        /**********************************************************
         * define variables for connecting with the gateway
         **********************************************************/
       
        $key  = $this->_paymentProcessor['password']; # Name and location of certificate file
        $requestFields["configfile"] = $this->_paymentProcessor['user_name'];      # Your store number
        $port = "1129";
        $host = "https://secure.linkpt.net:1129/LSGSXML";

and it seems to be working correctly, though I am not sure what it's doing wrong when calling that code.

B.

Eileen

  • Forum Godess / God
  • I’m (like) Lobo ;)
  • *****
  • Posts: 4195
  • Karma: 218
    • Fuzion
Re: First Data Processing
February 04, 2011, 01:21:14 pm
So, url_site in the db has the URL? that should work - unless it's set on the live one & not the test one or vice versa
Make today the day you step up to support CiviCRM and all the amazing organisations that are using it to improve our world - http://civicrm.org/contribute

bdanza

  • I post frequently
  • ***
  • Posts: 135
  • Karma: 3
  • CiviCRM version: 3.4.6
  • CMS version: Joomla 1.5, Drupal 6.2x
Re: First Data Processing
February 05, 2011, 12:54:13 pm
Figured the issue the url in the db was

https://secure.linkpt.net/

as opposed to

https://secure.linkpt.net (correct)

so when I finally got the .PEM issue worked out, it was creating a bad connection because of the misformed URL.

B.


Eileen

  • Forum Godess / God
  • I’m (like) Lobo ;)
  • *****
  • Posts: 4195
  • Karma: 218
    • Fuzion
Re: First Data Processing
February 05, 2011, 12:55:43 pm
Can you write up your implementation tips on the wiki?
Make today the day you step up to support CiviCRM and all the amazing organisations that are using it to improve our world - http://civicrm.org/contribute

bdanza

  • I post frequently
  • ***
  • Posts: 135
  • Karma: 3
  • CiviCRM version: 3.4.6
  • CMS version: Joomla 1.5, Drupal 6.2x
Re: First Data Processing
February 05, 2011, 12:59:01 pm
I would love to, I would also like to change the tip bubbles in the civicrm code, I think they could give a little more direction.

http://wiki.civicrm.org/confluence/display/CRMDOC33/First+Data,+Linkpoint,+Global+Gateway
« Last Edit: February 05, 2011, 01:38:18 pm by bdanza »

Pages: 1 [2]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using CiviContribute (Moderator: Donald Lobo) »
  • First Data Processing

This forum was archived on 2017-11-26.