Search the Community
Showing results for tags 'gateway module'.
Found 8 results
-
Payment gateway that allows payments and returns to WHMCS via przelewy24. Przelewy24 supports fast payments, payment cards, paypal, blik, Google Pay and Apple Pay. The module enables fast and secure payments for services, domains, servers and other products offered by WHMCS. Thanks to it, customers can also pay invoices issued by WHMCS. Module Features transaction payment handling handling of transaction returns transaction logging with the amount of commission Promotion If you want to get a lower commission in Przelewy24 and a 50% discount on this module, contact us 🙂 More: https://marketplace.whmcs.com/product/6645-przelewy24-payment-module
-
- gateway
- gateway module
-
(and 8 more)
Tagged with:
-
Hi,I need your help on something. 3D security verification process is not working properly.It redirects the bank page where the user will enter the security password, but the page is refreshed in a very short time.It is impossible for the user to enter the security password at that time.It is a very serious problem for us. How can we solve it?
- 1 reply
-
- gateway
- gateway module
-
(and 2 more)
Tagged with:
-
Is it possible to have this program configured to work with the Paytrace gateway? Thank you!
-
Now, after activating PayPal Expres I got the error as well. Before I used just PayPal (not Expres) and it worked. Also tried and acivated before the modul from market PayPal+, don't if that can case the error after deactivating and switching back to build in PayPal module. Any help please?
- 4 replies
-
- gateway module
- paypal gateway
-
(and 1 more)
Tagged with:
-
Hello, I'm trying to use custom pages for my gateway template but I'm not sure I'm following the right way todo this, does anyone know of a better way todo this. <?php // template.php function template_config() { $configarray = array ( ); return $configarray; } function template_storeremote($params) { global $smarty; $smarty->assign('foo', 'bar'); return $smarty->display('orderforms/{template}/{gateway}/{file}.tpl'); } function template_3dsecure($params) { global $smarty; $smarty->assign('foo', 'bar'); return $smarty->display('orderforms/{template}/{gateway}/{file}.tpl'); } ?> <?php // callback/template.php include("../../../dbconnect.php"); include("../../../includes/functions.php"); include("../../../includes/gatewayfunctions.php"); include("../../../includes/invoicefunctions.php"); $gatewaymodule = "template"; # Enter your gateway module name here replacing template $GATEWAY = getGatewayVariables($gatewaymodule); if ( ! $GATEWAY["type"]) { $smarty = new Smarty(); $smarty->assign('foo', 'bar'); echo $smarty->display('orderforms/{template}/{gateway}/{file}.tpl'); exit; } // do some staff $smarty = new Smarty(); $smarty->assign('foo', 'bar'); echo $smarty->display('orderforms/{template}/{gateway}/{file}.tpl'); exit; ?> Really hope someone can help.
- 2 replies
-
- custom
- gateway module
-
(and 2 more)
Tagged with:
-
This module integrates PayPlug.fr payment gateway into your WHMCS installation. It allows your customers to pay for their services by credit card via the PayPlug gateway, Invoices marked paid automatically once payment notification is received from PayPlug IPN service. For More Information: http://whmcms.com/payplug-whmcs-module/
-
- gateway module
- payment gateway
-
(and 2 more)
Tagged with:
-
I've recently been working on an Open Source gateway module for Purchase Orders that also includes Auto Activation for orders based on a custom client field that you enable in their profile. Because WHMCS does not let you edit threads after they are posted any updates, and details, will be maintained on my GitHub here: https://github.com/tripflex/whmcs-purchaseorder If you have ANY issues, please post them on GitHub, this forum is only occasionally checked. https://github.com/tripflex/whmcs-purchaseorder/issues Enjoy! - Myles
- 1 reply
-
- free
- gateway module
-
(and 2 more)
Tagged with:
-
We've created a third-party gateway module which seems to be working well, except for 1 thing.... For some reason, WHMCS is not providing any of the “Client Variables” to the submit form. Other variables DO get passed successfully (such as invoice ID and amount). According to the gateway module template and this page we seem to have the correct variables. Here is the module code: <?php function hosted_config() { $configarray = array( "FriendlyName" => array("Type" => "System", "Value"=>"Hosted"), "accountId" => array("FriendlyName" => "Account ID", "Type" => "text", "Size" => "20", ), "token" => array("FriendlyName" => "Payment Page Token", "Type" => "text", "Size" => "20", ), "testmode" => array("FriendlyName" => "Test Mode", "Type" => "yesno", "Description" => "Tick this to run test transactions only", ), ); return $configarray; } function helcimhosted_link($params) { # Gateway Specific Variables $gatewayaccountid = $params['accountId']; $gatewaytoken = $params['token']; $gatewaytestmode = $params['testmode'] == 'Yes' ? 1 : 0; # Invoice Variables $invoiceid = $params['invoiceid']; $description = $params["description"]; $amount = $params['amount']; # Format: ##.## $currency = $params['currency']; # Currency Code # Client Variables $clientid = $params['clientdetails']['id']; $firstname = $params['clientdetails']['firstname']; $lastname = $params['clientdetails']['lastname']; $email = $params['clientdetails']['email']; $address1 = $params['clientdetails']['address1']; $address2 = $params['clientdetails']['address2']; $city = $params['clientdetails']['city']; $state = $params['clientdetails']['state']; $postcode = $params['clientdetails']['postcode']; $country = $params['clientdetails']['country']; $phone = $params['clientdetails']['phonenumber']; # Enter your code submit to the gateway... $code = '<form action="https://gateway.HOSTED.com/hosted/" method="post"> <input type="hidden" name="merchantId" value="'.$gatewayaccountid.'" /> <input type="hidden" name="token" value="'.$gatewaytoken.'" /> <input type="hidden" name="testmode" value="'.$gatewaytestmode.'" /> <input type="hidden" name="customerId" value="'.$clientid.'" /> <input type="hidden" name="orderId" value="'.$invoiceid.'" /> <input type="hidden" name="amount" value="'.$amount.'" /> <input type="hidden" name="billingName" value="'.$firstname.' '.$lastname.'" /> <input type="hidden" name="billingAddress" value="'.$address1.' '.$address2.'" /> <input type="hidden" name="billingCity" value="'.$city.'" /> <input type="hidden" name="billingProvince" value="'.$state.'" /> <input type="hidden" name="billingPostalCode" value="'.$postcode.'" /> <input type="hidden" name="billingCountry" value="'.$country.'" /> <input type="hidden" name="billingPhoneNumber" value="'.$phone.'" /> <input type="hidden" name="billingEmailAddress" value="'.$email.'" /> <input type="submit" value="Pay Now" /> </form>'; return $code; } ?> What am I doing wrong?? Or is it a typo in the documentation?? Any help is appreciated.
-
- client variables
- gateway module
-
(and 2 more)
Tagged with: