Jump to content

DennisHermannsen

Member
  • Posts

    878
  • Joined

  • Last visited

  • Days Won

    46

DennisHermannsen last won the day on March 26

DennisHermannsen had the most liked content!

3 Followers

About DennisHermannsen

Recent Profile Visitors

5926 profile views

DennisHermannsen's Achievements

Senior Member

Senior Member (3/3)

  • Helpful Rare
  • Great Support Rare

Recent Badges

135

Reputation

7

Community Answers

  1. Check the version history for the API method. It's deprecated since version 8.
  2. Your cPanel license is limited to X amount of users (X is either 1, 5, 30, 100, 150, 200, 250 etc). If you have a cPanel 100 account cPanel license, you will get the error "Creating the account would exceed the number of licensed users. Please upgrade your license and try again." when trying to create account number 101. You will need to upgrade the amount of accounts you can create with your cPanel license.
  3. Your cPanel license is limited to X amount of users, and you're trying to create number X+1. You will need to upgrade your cPanel license.
  4. The "e" in the URL parameter is just short for "express". e=false just means it's not using express checkout.
  5. You most likely got lucky and deleted your cookies. The selected theme is stored in a cookie. It worked for me once but was back to the broken layout the next day.
  6. @WHMCS John are you aware of this issue? 🙂
  7. Try this module: https://github.com/DennisSkov/WHMCSPasswordChange
  8. I needed to show temporary messages in certain cases (like a "success" message after a POST request) and noticed the "$template\includes\flashmessage.tpl" file. I assumed WHMCS already had a native to show flash messages - and I was right. After doing some research, I found the "WHMCS\FlashMessages" class. This has two methods; get() and set(). The last methods accepts $text and $type (defaults to "info", but can be "danger", "success" and "warning"). If you need to show a flash message on a custom page for your module, just include the following in your template file wherever the message needs to appear: {include file="$template/includes/flashmessage.tpl"} This is the required PHP code: <?php $flashMessage = new \WHMCS\FlashMessages; $flashMessage->set('Data submitted!', 'success');
  9. ... and why the heck would they? If you had the option to a) make more money or b) not make more money, what would you do? In your case, you'd obviously spend a lot of your companies money investigating why a very small amount of your users are running into issues on modified versions of your software because that's the right thing to do... Right? From what I can gather about the Uncaptured Stripe Payments issues, noone has been able to replicate the issue on a non-modified version of WHMCS. We had the issue years ago. I don't remember what fixed it, but we removed a lot of custom code that were no longer needed. The only time we have uncaptured payments now is when an order is marked as fraud.
  10. The past few days, I've had issues accessing the WHMCS forums. It seems styling is missing randomly and pages just loads forever. I started investigating a few minutes ago and can see that it tries pulling ressources from testing.whmcs.community but fails due to a missing SSL certificate on that website.
  11. The InvoicePaidPreEmail event should trigger before WHMCS starts updating the next due date. You could save the value in that event and then use another hook event to modify the next due date to your liking.
  12. You most likely have an issue with with the syntax of the email. Check the activity log after sending a message.
  13. We use it. Never had any issues.
  14. That's the neat part. You don't. It's hardcoded 🙂 You can work around the issue with hooks. You could also change the billing cycle to "One time" - that should provide exactly what you're looking for, although clients could be confused when they see their billing cycle being "One time payment".
×
×
  • 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