CodeIgniter Forums
Linkpointcentral payment gateway.............. - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Linkpointcentral payment gateway.............. (/showthread.php?tid=5012)

Pages: 1 2


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]MASS MASS[/eluser]
Can anybody worked on Linkpoint central payment gateway

Please help..............


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]manish[/eluser]
Hi ,
what type of help you want


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]MASS MASS[/eluser]
PHP sample code.............

and also

"host" = "";
"port" = "";
"keyfile" = "";
"configfile" = "";


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]manish[/eluser]
please download link pint manual and go through it !!!!!!!!!
it's vary simple to use . and do you have account on link point


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]MASS MASS[/eluser]
Our client created linkpoint merchant account.....

I have alreay gone through it.....

i have sample code also............

but it showing error .......like FAILURE Could not connect.


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]manish[/eluser]
please check your secret key , is there any error no ?


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]MASS MASS[/eluser]
what secret key..............


it uses .pem extention file.........

i Have this file


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]glemigh[/eluser]
I believe the PEM is for the LinkpointAPI not required for the Linkpoint Gateway.

I've worked with the API before, but never messed much using the Gateway before.

For the API it's something like:
Code:
$myorder["host"] = "secure.linkpt.net";
$myorder["port"] = "1129";
$myorder["keyfile"] = "YOURPEMFILENUMBER.pem";
$myorder["configfile"] = "YOURSTORENUMBER";
$myorder["ordertype"] = "SALE";
$myorder["result"] = "LIVE";


George


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]MASS MASS[/eluser]
Hi gelmigh...............

Can you provide PHP sample code for it.......

can you explain difference between linkpoint gateway security key and linkpoint gateway API


Linkpointcentral payment gateway.............. - El Forum - 12-31-2007

[eluser]glemigh[/eluser]
Ouch, well one you POST to like from a form, and the API you use a api (via their php class file) which makes use of curl, end you handle all of your data and forms and Linkpoint forms are used for the Connect product.

You probably need to do some reading, have a look here.


https://www.linkpoint.com/support/sup_index.htm

You can call the api like so:
Code:
$mylphp = new lphp();
$result = $mylphp->curl_process($myorder);

And there is example code in the API docs.

George