Jump to content

Md Rasel Khan

Member
  • Content Count

    54
  • Joined

  • Last visited

Community Reputation

2 Neutral

1 Follower

About Md Rasel Khan

  • Rank
    Member

Recent Profile Visitors

1123 profile views
  1. I need to add so many orders. So trying to build API. I can not send "customfields" data. Here is my code using Node, Express: app.get("/addorder", (req, res) => { try { wclient .call("AddOrder", { clientid: 9480, paymentmethod: "paypal", pid: [4], customfields: [ btoa(JSON.stringify({ 1: "Username" })), btoa(JSON.stringify({ 2: "Password" })), ], noinvoice: true, noinvoiceemail: true, noemail: true, }) .then((data) => { console.log(data); res.send({ success: true, data, }); }) .catch((error) => { console.log(error); res.send({ success: false, error: error.message, }); }); } catch (error) { console.error(error); res.send({ success: false, error: error.message, }); } }); It's adding an order, but there is no custom field data on order—something I missed, maybe. Here is the WHMCS API Reference: https://developers.whmcs.com/api-reference/addorder/
  2. To import around 7k clients, I build a simple node js application. Just convert your CSV file to a JSON file. You may use this site: https://www.convertcsv.com/csv-to-json.htm Here is the Git repository link: https://github.com/immdraselkhan/whmcs-clients-import
  3. To import around 7k clients, I build a simple node js application. Just convert your CSV file to a JSON file. You may use this site: https://www.convertcsv.com/csv-to-json.htm Here is the Git repository link: https://github.com/immdraselkhan/whmcs-clients-import
  4. Hello @everyone, Is there anyway to set the client search filter to Email by default in WHMCS admin? @brian!
  5. Hello everyone, Is there anyway to show a warning during purchase If the same purchased before & it is active? @brian!
  6. Hi @SeanP Is there any way to show a warning during order If the same product already purchased before and active? Thanks!
  7. As far I know that is, if someone has an active order then the second order of that product not possible to place. But I want, visitors or customers can not to add the same product twice to the cart. Is it possible? @brian! or @bear
  8. @brian! Is there any way to prevent adding same product twice in cart by book? Thanks!
  9. I followed this article before posting here. He did not assigned Static Public IP to his server as a result when he reboot the server IP got changed. But changed IP & old IP was not same. But I already assigned Static Public IP. And I configured the server on WHMCS properly.
  10. Module log. Array ( [@attributes] => Array ( [version] => 1.6.3.2 ) [webspace] => SimpleXMLElement Object ( [add] => SimpleXMLElement Object ( [result] => SimpleXMLElement Object ( [status] => error [errcode] => 1023 [errtext] => Unable to get ip id by address '13.213.130.83' from db. ) ) ) )
  11. Hello, I'm using latest WHMCS. I was added a Plesk server to my WHMCS, server hosted on AWS Lightsail. But when I try to create an account getting this error. Error code: 1023. Error message: Unable to get ip id by address 'xx.xx.xx.xx' from db. But I was input correct public IP address of the server. Is there anyone to help me?
  12. Yes, I have resellerclub account. ResellerClub as a whois lookup provider.
×
×
  • 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