Jump to content

Linkpoint Gateway working and tip


Guest bushsuckz

Recommended Posts

Guest bushsuckz

Okay, I finally got the Linkpoint module to work.

First, you don't need to really have SSL for the CubeCart, but, rather, transmit to the SSL at Linkpoint (as configured in the module)

This is the path in the transfer.inc, and it is correct ----

$formAction = "https://www.linkpointcentral.com/lpc/servlet/lppay";

Having SSL for just product and account info isn't necessary, and when you transmit to Linkpoint it will be via https and because Linkpoint will pop up the box in SSL for CC info, then all is well. So, I turned off SSL in the Admin and the cart now works great.

In addition, I found it easier -- and so did the Linkpoint tech -- to change the transfer.inc in the Linkpoint gateway mod from

$hiddenVars = "<input type='hidden' name='mode' value='fullpay' />

to

$hiddenVars = "<input type='hidden' name='mode' value='payonly' />

If you let your CubeCart gather the customer info only and only transmit the most necessary info (payonly mode), then the customer doesn't have to repeat the entering of personal information.

Just thought I would pass this on...

Link to comment
Share on other sites

  • 2 weeks later...

i just set up my cubecart and was hoping the linkpoint would work easily did a test and got this message

Form Processing Error

The following errors occurred while processing your request:

# It is not possible to order from the store at this time.

# Contact the merchant for further information (error 1002).

any ideas?

Does linkpoint integration not really work from a stock cube install? HELP? Or is there something i need to do on the linkpoint side to get it to work

Link to comment
Share on other sites

Guest bushsuckz

I kept getting the same errors until I made a call to Linkpoint.

There are two types of accounts with Linkpoint. You need to call and arrange for them to configure the Connect mode, I believe.

Link to comment
Share on other sites

  • 3 months later...

Linkpoin confige with no error.

1. Go to your store

2. place an order

3. copy the url to the page were it says pay by mail or visa matercard etc.

4. log in to linkpoint

5. click on csotumization

6. click on settings

you will see

Order Submission Form

Submission Form URL (text only):

For example:

http://www.yourserver.com/yourstorename/yourorderform.html

or if you are using a secure web server:

https://www.yourserver.com/yourstorename/yourorderform.html

or if you are generating the form in a CGI:

http://www.yourserver.com/yourstorename/yourorderform.cgi

then an empty box underneath it.

7. paste the url you copied

8. click submit

9. go back to your store click submit for the credit card transaction

It should work perfect.

*make sure linkpoint gateway is active in your stores admin

Link to comment
Share on other sites

  • 5 years later...
Guest Phani

Hi All,

I am using the linkpoint api for payment process, unfortunatly i am not getting any response from linkpoint server. After googling i found that 1129 port is must be enable in my server. but we are using shared server this is not possible

Can u tel me how can use payment method without using api (ie full pay, payonly ....etc).

I tried those with ex by giving my store id ...but i am getting errors

It is not possible to order from the store at this time.

Contact the merchant for further information (error 1002).

please send any suggestions how to test

Thanks

Phani

Link to comment
Share on other sites

  • 4 weeks later...

Hi All,

I tried those with ex by giving my store id ...but i am getting errors

I am taking code from and i have merchant account

http://www.firstdata.com/downloads/marketing-merchant/emea_integrationguide_connect_2_0.pdf

Code as below

<?php

$dateTime = date("Y:m:d-H:i:s");

function getDateTime() {

global $dateTime;

return $dateTime;

}

function createHash($chargetotal, $currency) {

$storeId = "12345678";

$sharedSecret = "sharedsecret";

$stringToHash = $storeId . getDateTime() . $chargetotal .

$currency . $sharedSecret;

$ascii = bin2hex($stringToHash);

return sha1($ascii);

}

?>

<form method="post" action="https://www.linkpointcentral.com/lpc/servlet/lppay">

<input type="hidden" name="txntype" value="postauth"/>

<input type="hidden" name="timezone" value="CET"/>

<input type="hidden" name="txndatetime" value="<?php echo getDateTime();?>"/>

<input type="hidden" name="hash" value="<?php echo createHash(13.00,840) ?>"/>

<input type="hidden" name="storename" value="12345678"/>

<input type="hidden" name="mode" value="fullpay"/>

<input type="text" name="chargetotal" value="13.00"/>

<input type="hidden" name="currency" value="840"/>

<input type="submit" value="Submit">

</form>

I am getting error as :

It is not possible to order from the store at this time.

Contact the merchant for further information (error 1002).

please send any suggestions how to got the solution

Thanks

Nigam

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...