Jump to content

Search the Community

Showing results for tags 'gateway module'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


WHMCS.Community

  • WHMCS Beta Program
  • The latest WHMCS Release
    • WHMCS 8.7 Release Discussion Board
  • The Latest from the WHMCS Team
  • WHMCS.Community
    • Community Announcements
    • Introduce Yourself
    • MarketConnect Partner Product Status Updates
  • Using WHMCS
    • Pre-Sales Questions
    • Admin & Configuration Questions
    • Installation, Upgrade, and Import Support
    • Using WHMCS
    • Troubleshooting Issues
    • Vendor Discussions
  • WHMCS Showcase
    • Showcase Your Site
    • Share Your Best Practices & Tips
  • Developing & Extending WHMCS
    • Third Party Add-ons
    • Service Offers & Requests
    • Developer Corner
    • Building Modules
    • Share Ideas for WHMCS Modules
  • Community Competitions
    • News, Announcements & Blogs from WHMCS
    • Competitions
  • General Discussions
    • General Discussion
  • General Feedback & Assistance
    • Feedback
    • WHMCS.Community Tips & Tricks
  • Third Party Developers's Topics
  • Turkish International Discussions's Topics
  • Russian International Discussions's Topics
  • Spanish International Discussions's Topics
  • Portuguese International Discussions's Topics
  • French International Discussions's Topics
  • Italian International Discussions's Topics
  • German International Discussions's Topics
  • WHMCS Brasil's Topics
  • WHMCS Brasil's Tópicos
  • ModulesGarden Club's Topics
  • Hungarian International Discussions's Segítség
  • ThemeMetro Club's Topics
  • WHMCS Services Club's Topics
  • WHMCS Global Services Club's Topics
  • Katamaze's Free Scripts
  • Katamaze's Module Support
  • Zomex Club's Topics
  • 0100Dev Club's Topics

WHMCS Version

  • V8.6.x Hotfixes
  • V8.5.x Hotfixes
  • V8.4.x Hotfixes

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me

Found 8 results

  1. 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
  2. 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?
  3. Is it possible to have this program configured to work with the Paytrace gateway? Thank you!
  4. 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?
  5. 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.
  6. 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/
  7. 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
  8. 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.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated