Support Forums

custom payment gateway (API supplied)

This is a discussion on custom payment gateway (API supplied) within the Modules / Plugins / Modifications forums, part of the Developer Forums category; Hi, Who could make me a custom payment gateway? The api documents: Mollie - Integrate iDEAL into your website (Dutch ...


Go Back   68 Classifieds Forums > Developer Forums > Modules / Plugins / Modifications

Reply
 
Thread Tools Display Modes
Old 10-17-2008, 08:05 AM   #1
jadove
Guest
 
Posts: n/a
Default custom payment gateway (API supplied)

Hi,

Who could make me a custom payment gateway?
The api documents: Mollie - Integrate iDEAL into your website (Dutch payment method)
my budget : 0$ - 300$

I really hope to hear from you!
Dominick
  Reply With Quote
Old 10-17-2008, 09:12 AM   #2
Genius At Work
 
bowers01's Avatar
 
Join Date: May 2008
Location: Geelong, Victoria, Australia
Posts: 1,051
Rep Power: 31
bowers01 is on a distinguished road
Default

Hi,
No reason you cant do it yourself.
http://www.68classifieds.com/forums/...se-my-own.html
Cheers
__________________
Nick Bowers
68c v4.1.10 Developer Custom Template
bowers01 is offline   Reply With Quote
Old 10-17-2008, 09:21 AM   #3
jadove
Guest
 
Posts: n/a
Default

thanks for your reply.
But, just imagine, shouldn't you have a more safer/secure feeling if someone, who is familiar with 68classifieds would do it, than you (have zero knowledge of 68classifieds.).

And when nobody responds, i will try it, but when someone responds, and who has time to do it, it would be easier.

And i thank you for giving me this link, and i will bookmark it, and likme i said, when nobody respond i dont have much choice, do I?

JaDoVe
  Reply With Quote
Old 10-17-2008, 12:18 PM   #4
68 Classifieds Staff
 
Eric Barnes's Avatar
 
Join Date: Mar 2006
Location: Belmont, NC
Posts: 5,471
Rep Power: 130
Eric Barnes is just really nice Eric Barnes is just really nice
Default

I had a quick look and it really doesn't look that easy to integrate. Especially since I can't really read the code comments.

From what I can tell it could be done but would require a lot of work.
__________________
Eric Barnes
68 Classifieds Developer
Customer Area | Issue Tracker | Documentation | 68C Mods | 68 @ Twitter | My Modules
Eric Barnes is offline   Reply With Quote
Old 10-18-2008, 01:30 PM   #5
jadove
Guest
 
Posts: n/a
Default

Hi,

O, can you tell me why it seems not easy to integreate?

Dominick

P.S. i translated 2 (the most important files)
Here they are (i know, my gramma isnt good, but i am working on it!)
pay.php
Quote:
<?
/*
================================================== ==================
pay.php - Is part of the php-example for demonstration purpose of the
mollie-ideal-class.

This script gives the visitors the option to choose between banks, creates a payment
and shuttelt the visitor to the site of the bank of choice..

(This scripts purpose is to explain the concept, it doesnt have to be watertight or secure)

Bastiaan Peters ::: Mollie B.V. ::: 16 mei 2006 ::: Mollie - Betaaldiensten & SMS/MMS gateway's
================================================== ==================
*/

//// CONFIGURATIE

// partnerid -> number of your Mollie-account
$partnerid = '<partner ID>';

// your site + (maybe) subdomain) (where this is gonna be)
$uwsite='http://www.uwwebsite.nl/voorbeeld';
// reportscript (is needed when the status (of the payment) changes)
$reportscript = $uwsite . '/report.php';
// returnscript (the visitor goes to this after the payment is complete)
$returnscript = $uwsite . '/return.php';

//// HEADPROGRAM

// we need the ideal-class (we just expect the class to be in the same directory as the pay.php (if not, EDIT!)
//
require('class.mollie.ideal.php');

// Which bank already known?
if($_GET['bankid']) {

// Yes, the bank is already chosen

// new,, idealobject with al necessary information:
$ideal = new ideal();
$ideal->setTestMode(true);

// input the partner id
$ideal->setPartnerid($partnerid);

// input description
$ideal->setDescription('this is a testpayment..');

// put in return and report urls in ( Mollie - Integrate iDEAL into your website (Dutch payment method) for more info)
$ideal->setReturnURL($returnscript);
$ideal->setReportURL($reportscript);

// input the price (in pennies (eurocents(100 eurocent is 1 euro))
$ideal->setAmount('1000');

// confirm bank
$ideal->setBankid($_GET['bankid']);

// make payment, die if faiks
if(!$ideal->createPayment())
die('creating payment failed: '.$ideal->statusmessage);

/*
By using 'createPayment()' we created a prep for the bank we gonna use.

after payment have a uniek url ($ideal->URL) and a transaction_id ($ideal->transaction_id)
after creatin the transaction id has to be saved in your own database with the userdetails
In this case we can always recall with user belongs to which transaction_id.

When payment is finished (succesfull or failed) you will be redirected to the 'reporturl'
call (with the transaction_id as GET-variabele). at this reporturl there should be a script
installed who checks the payment with mollie using the transaction_id
and the status saved with the userdetails, so you always can look who failed etc.

We use 'report.php' in this example to do this.

After this we be redirected back to 'returnurl' (again with transaction_id as GETvar). You can look here
(using the tansaction_id_ is they already have paid. maybe a thank you when succesful
or an error when failed?

In this example the 'return.php' file does this.
*/



// We send the user to the bank of their choice, instandly in the payment header
("Location: ".$ideal->bankurl);
}
else
{
// You diddnt choose a bank. We load the bank list for you....
$ideal = new ideal();
$ideal->setTestMode(true);
$ideal->setPartnerid($partnerid);
$ideal->fetchBanks();

// a form to choose a bank
echo('<html><body><h3>This is an example.</h3><p>Choose your bank. You gonna be redirect to your bank paymentpackage</p><form><select name="bankid">');
// build a selct with options from the 'banks'-variabele from the ideal-instance.
foreach($ideal->banks as $bank_id=>$bank_name)
echo('<option value="' . $bank_id . '">' . $bank_name . '</option>');
echo('</select><input type="submit" value="choose bank"></form><p>(Attention: The payments are real!.<br/>so, when we go further we can pay for real!></body></html>');
}
?>
return.php
Quote:
<?
/*
================================================== ==================
return.php - is part of the pgp example to show the
mollie-ideal-class.

This page is used to give users a feedback on their payment
And to show information using the status


This script would be called with transaction_id as GET-
var. With this you can see in your own databse if its a succes payment

(THis script is an example, it isnt tested!.)

Bastiaan Peters ::: Mollie B.V. ::: 17 mei 2006 ::: Mollie - Betaaldiensten & SMS/MMS gateway's
================================================== ==================
*/
?>
klaar

Last edited by jadove; 10-18-2008 at 01:32 PM. Reason: make the phpfiles bold
  Reply With Quote
Old 10-18-2008, 02:45 PM   #6
68 Classifieds Staff
 
Eric Barnes's Avatar
 
Join Date: Mar 2006
Location: Belmont, NC
Posts: 5,471
Rep Power: 130
Eric Barnes is just really nice Eric Barnes is just really nice
Default

Hi,

Thanks for that. Now can you explain this?
Quote:
This script gives the visitors the option to choose between banks, creates a payment
and shuttelt the visitor to the site of the bank of choice..
So users can select the bank they want to use then the visitor is sent to that banks website?
__________________
Eric Barnes
68 Classifieds Developer
Customer Area | Issue Tracker | Documentation | 68C Mods | 68 @ Twitter | My Modules
Eric Barnes is offline   Reply With Quote
Old 10-19-2008, 10:41 AM   #7
jadove
Guest
 
Posts: n/a
Default

Yes, IDEAL is a paymenth Gateway developed by all the bank.
But due security reasons the bank only process their clients.
So visitor choose which bank they have, the script redirect them to the bank pay thingy.

Dominick
  Reply With Quote
Old 10-20-2008, 05:16 AM   #8
jadove
Guest
 
Posts: n/a
Question

I found another provider, who provides exactly the same, but he provides everything in english.

So i repeat my question:

I am looking for someone who can make me a cutom payment gateway using IDEAL.
I supply the documents.

I am only able to pay with creditcard or paypal.
The budget: max 100 USD

Documents:
TargetPay > Advanced > > Documentation

Second question:
I am looking for someone who can make me a custom payment gateway using a telephone to pay.
The budget: max. 100 USD

Documents:
TargetPay > Advanced > > Documentation

I hope to hear from you!
  Reply With Quote
Old 04-11-2009, 06:39 PM   #9
Junior Member
 
Join Date: Apr 2009
Posts: 1
Rep Power: 0
Guido is on a distinguished road
Default

Just for those googlers who end up here like i was.
Mollie has a sister site www.zaypay.com wich is in English.
Guido is offline   Reply With Quote
Old 01-23-2010, 03:59 PM   #10
Customer
 
Join Date: Jan 2010
Posts: 10
Rep Power: 3
recamp is on a distinguished road
Wink Looking for mollie ideal payway

I don't get it if it's realy so simple than why is there nobody that made a smal script for mollie and ideal paymants so we all can buy it and work with it?
I'am willing to pay if there is somebody that wil make it for me, i life in the netherlands and withhout a ideal payway whe can't work wel because everybody only wants to pay this way.

Sorry for my bad writhing.

I hope to here from somebody that is willing to help.

Regards Marco
recamp is offline   Reply With Quote
Reply

Tags
ideal , job , mod , pay , payment

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Setcom Payment Gateway namibads Modules / Plugins / Modifications 5 05-07-2009 09:41 PM
Payment Gateway Can I use my own? willy928 Technical Support 2 10-17-2008 01:42 PM


All times are GMT -4. The time now is 09:58 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0