idris820 Posted January 25, 2010 Share Posted January 25, 2010 Hi, I'm french , i just want to know where do we have to put the code HTML of the Pay Points for each things that the client will buy ? In the admin panel , where do i have to go to put the HTML code of my Pay Points for the things that i sell ? For the firm of micro-payment I am to starpass, it is a firm of french payments, they give an html code. Thanks in advance for your answers... ! 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Support Manager WHMCS John Posted January 26, 2010 WHMCS Support Manager Share Posted January 26, 2010 Starpass is not one of our supported gateways: http://whmcs.com/modules.php 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 Did you accept AlloPass pay points ? Because in a website , you accept it. In AgsaHosting (a website where there is whmcs) we can pay by allopass .. 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 There is any french registrar or GateWays !!! --' 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Support Manager WHMCS John Posted January 26, 2010 WHMCS Support Manager Share Posted January 26, 2010 Maybe they've created the payment gateway module themselves? 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 26, 2010 Share Posted January 26, 2010 You can try to create a payment gateway with the HTML-code in the template_link() function. We also did this for one of our micropayment processors. WHMCS is very customizable, you can just create your own payment gateway. 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 Can you explain to me how to do ? All i have to do please 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 26, 2010 Share Posted January 26, 2010 On this page you can download the Gateway Module Development Kit. The .zip containts a DOC-document with instructions. 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 thanks for your help m00 ! 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 I've download the Gateway Module Development Kit but i don't know how to do. I read the instructions ... I just have an HTML code for the paiement ..! 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 26, 2010 Share Posted January 26, 2010 (edited) Try this: <?php function starpass_config() { $configarray = array( "FriendlyName" => array("Type" => "System", "Value"=>"Starpass") ); return $configarray; } function starpass_link($params) { $code = 'PLACE YOUR HTML-CODE IN HERE'; return $code; } ?> Call the file starpass.php and place it in /modules/gateways/. Please note that I do NOT have any experience with Starpass, so I don't have a clue how you can define your order number in the payment or whatsoever. Edited January 26, 2010 by m00 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 $code = 'PLACE YOUR HTML-CODE IN HERE'; I put the code of the pay points ? And where the pay points have to redirect to confirm the paiement after ... 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 i do the same thing with callback.php and template in the GateWayDevKit ? 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 26, 2010 Share Posted January 26, 2010 You can create a callback file for this. (see the example callback.php in the ZIP) I cannot provide you with an example for that. I never integrated Starpass. (you can also edit your messages with the Edit button, instead of creating a new reply ) 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 It's COMPLICATED !!! $code = 'PLACE YOUR HTML-CODE IN HERE'; Wich html code did i place ?! 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 26, 2010 Share Posted January 26, 2010 It's COMPLICATED !!!$code = 'PLACE YOUR HTML-CODE IN HERE'; Wich html code did i place ?! Not so complicated at all, just a good old RTFM. Just place the Starpass HTML-code over there. 0 Quote Link to comment Share on other sites More sharing options...
idris820 Posted January 26, 2010 Author Share Posted January 26, 2010 StarPass html code ? My Pay Points One ? 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 26, 2010 Share Posted January 26, 2010 StarPass html code ?My Pay Points One ? Just the HTML-code you have for processoring the payment. Again; untill now we don't have integrated Starpass (or My Pay Points?) for us or one of our clients yet, so I'm affraid I don't have an answer on that one. You can try contacting Starpass, maybe that they're having a module or can provide some help with it (or find someone who can help developing a payment module for starpass). 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.