Jump to content

SeanP

Member
  • Posts

    457
  • Joined

  • Last visited

  • Days Won

    5

SeanP last won the day on September 23 2022

SeanP had the most liked content!

About SeanP

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

SeanP's Achievements

Senior Member

Senior Member (3/3)

  • Helpful Rare

Recent Badges

6

Reputation

2

Community Answers

  1. You can use the API to get the available credit balance for a client. // Set Client ID $clientid = '{YOUR_CLIENT_ID}'; // Get Client Credit Balance $command = 'GetClientsDetails'; $postData = array( 'clientid' => $clientid, 'stats' => true, ); $creditresults = localAPI($command, $postData); // Set Credit Balance Variable $clientcredit = $creditresults['client']['credit']; // Set Credit Balance Variable With Currency $clientcreditcurrency = $creditresults['stats']['creditbalance'];
  2. Is there a payment gateway that allows you to accept echecks (EFT/ACH), that uses tokenization (bank details stored remotely)? I currently use Quantum Vault for credit cards, but would like to possibly add an echeck option. I just don't want the bank details stored locally in the WHMCS database.
  3. If you purchased the license directly from WHMCS, you can follow the steps on this link to reissue the license (this will update the license details to allow your new URL): https://docs.whmcs.com/Licensing If you purchased the license from a web host, you would have to contact them to reissue the license.
  4. @TheHostingHeroes Is this a hotfix to your issue, or was it something else?
  5. @WHMCS John Thanks for the heads up.
  6. We are almost to 3 weeks since 8.8.0 was released. Typically we see a couple hotfixes, and then a maintenance release by now. Anybody running into issues with 8.8 that require hotfixes?
  7. A lot of module companies offer an option for purchasing the source code. You can pay a one time fee, and get a source code copy of the module. While the cost for this is typically much higher, it is at least an option if you do not wish to "rent" the module.
  8. I didn't get an email either. I asked about it via a support ticket, as well.
  9. They sent me the patch, then replied back later with the following: "A defect has been identified in the Security Update 2023-06-20 patch provided for End of Life versions of WHMCS, which causes an error during payment captures made using the Stripe payment gateway." I was then sent an updated version of the patch, that supposedly corrected this issue. I do not use Stripe, so I'm not able to test that part.
  10. You would need to change the following line to the URL of the page where you want the user redirected: $redirectURL = 'insidesales.php';
  11. Try the following: <?php use Illuminate\Database\Capsule\Manager as Capsule; function addon_hook_AdminAreaPage($vars) { // Retrieve the admin's ID $adminID = $vars['adminid']; // Query the tbladminroles table to check if the admin's ID matches the desired ID $desiredRoleID = 5; $isAdminInsideSales = Capsule::table('tbladmins') ->where('id', $adminID) ->where('roleid', $desiredRoleID) ->exists(); // If the admin is in the desired role, redirect to insidesales.php if ($isAdminInsideSales) { $redirectURL = 'insidesales.php'; header("Location: $redirectURL"); exit; } } add_hook('AdminAreaPage', 1, 'addon_hook_AdminAreaPage');
  12. I used the Apache directive from the following page I found in a Google search: https://geekflare.com/secure-apache-from-clickjacking-with-x-frame-options/ There is also a link to a "Header Checker" tool, that will verify if your site has the correct header implemented.
  13. The 'View & Manage Contacts' permission does just that. It lets a user view and manage the contacts, not the users. It does look like only the owner has access to User Management.
  14. Is it possible for a user on an account, that is not the owner, to have rights to the "User Management" page?
×
×
  • 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