Jump to content

WHMCS.Community

  1. WHMCS Beta Program

    1. WHMCS 9.0 RC Discussion

      We're excited to announce the beta release of WHMCS 9.0. Be among the first to try out the new features and functionality by getting involved in the release candidate today.

      The purpose of this board is to ask any questions, raise issues or provide feedback on the WHMCS V9.0 Release Candidate. This board will remain open until we reach release day, at which point they be archived. WHMCS V9.0 includes a new Nexus cart experience, AI Domain Namespinning, CSV support for ImportAssist, and credit and debit notes, and much more!

      Check out the release highlights for an overview and the release notes for full details.

      As always, RC releases are intended for testing only and are not recommended for production use

      91
      posts
  2. WHMCS.Community

    1. Community Announcements

      Our WHMCS Community Announcements with everything from our community rules to updates on making our community more awesome

      160
      posts
    2. Introduce Yourself

      Introduce yourself here and be sure to come back to welcome others.

      1.2k
      posts
    3. MarketConnect Partner Product Status Updates

      This board is used to communicate any planned or unplanned MarketConnect partner product status updates, this board is read-only and will be updated via the MarketConnect Team when issues arise.  If you are experiencing an issue that is not reported in this board please review the MarketConnect Help Centre or Open a Ticket with our team

      37
      posts
  3. Using WHMCS

    1. Pre-Sales Questions

      Considering purchasing WHMCS but have some questions? Ask them here.

      13.1k
      posts
    2. Admin & Configuration Questions

      This is your space for any questions about WHMCS configuration settings.
       

      6.4k
      posts
    3. Installation, Upgrade, and Import Support

      Get help from the community with installing, upgrading and migrating to WHMCS here

      6.1k
      posts
    4. Using WHMCS

      Have a question about how something works or need help configuring and using WHMCS? Here's the place to do it.

      96.3k
      posts
    5. Troubleshooting Issues

      Use this board to discuss any issues or problems you are encountering. If you think you've found a bug, please report it here

      28.1k
      posts
    6. Vendor Discussions

      Discuss Control panels, payment gateways and domain registrars here

      838
      posts
  4. WHMCS Showcase

    1. Showcase Your Site

      Customized and integrated WHMCS in some way? Show the WHMCS Community here!
       

      8k
      posts
    2. Share Your Best Practices & Tips

      Share your tips and advice to the rest of the WHMCS community.
       

      362
      posts
  5. Developing & Extending WHMCS

    1. Third Party Add-ons

      A place to discuss third party modules, add-ons and extensions for the WHMCS platform.

      marketplace_inverse_728x90.png&key=ebc9c3244aa6bb0297564b81d8e33ae4d631eaca838fc05b66038be9162910c7&resource=1

      18.6k
      posts
    2. Service Offers & Requests

      A place to post offers & requests for services related to WHMCS. Rules apply.

      22.7k
      posts
    3. Developer Corner

      Integration, customization and module development, if you have questions, ask them here.

      59k
      posts
    4. Building Modules

      Need help while building an extension? Ask your questions here.

      635
      posts
    5. Share Ideas for WHMCS Modules

      Looking for an extension that doesn't exist? Share your ideas and vote on others.

      182
      posts
  6. Community Competitions

    1. News, Announcements & Blogs from WHMCS

      The latest WHMCS News, Announcements & Blog Posts from WHMCS are shared here

      602
      posts
    2. Competitions

      From time to time we run community competitions this is the place you'll find them

      • No posts here yet
  7. General Discussions

    1. General Discussion

      Board for general conversation, share interests, discuss industry related news, etc...

      40k
      posts
  8. General Feedback & Assistance

    1. Feedback

      WHMCS Community Feedback helps us to continue improving WHMCS software.

      8.6k
      posts
    2. WHMCS.Community Tips & Tricks

      This board provides an overview of some features and functionality that WHMCS.Community provides.  We add new content from time to time.

      6
      posts
  9. Club Forums

      • No posts here yet
    1. Katamaze Free Scripts

      Perfect your WHMCS with free action hooks, reports and modules. Follow us on Github for more contents.

      50
      posts
    2. Katamaze Module Support

      This board acts as a place where you can get support by us (no guarantee) or by fellow users using your same module.

      143
      posts
    3. 17
      posts
    4. 523
      posts
    5. 494
      posts
    6. 108
      posts
    7. RactStudio Club Topics

      RactStudio is a software development company that offers a range of WHMCS and WordPress products and services that are designed to enhance the functionality and user experience of these platforms. With a focus on quality, affordability, and customer support, RactStudio is the perfect partner for any web hosting company, blogger, and other online businesses who want to take their online presence to the next level.

      • No posts here yet
    8. 69
      posts
    9. 88
      posts
    10. 6
      posts
    11. 7
      posts
    12. 5
      posts
      • No posts here yet
    13. 23
      posts
      • No posts here yet
    14. 29
      posts
    15. 296
      posts
    16. 20
      posts
    17. 22
      posts
  • Member Statistics

    114383
    Total Members
    6965
    Most Online
    imapbackupmigrationsoftwar
    Newest Member
    imapbackupmigrationsoftwar
    Joined
  • Community Statistics

    81.5k
    Total Topics
    375k
    Total Posts
  • Who's Online   0 Members, 0 Anonymous, 566 Guests (See full list)

    • There are no registered users currently online
  • Popular Contributors

  • Our picks

  • Topics

  • Posts

    • "Separate invoices" still standing to "OFF" under the Clients Profile?
    • just updated for whmcs 9   <?php use WHMCS\Database\Capsule; add_hook('AdminAreaHeaderOutput', 1, function ($vars) {     $version = Capsule::table('tblconfiguration')         ->where('setting', 'Version')         ->value('value');     $major = (int) explode('.', (string) $version)[0];     if ($major < 8 || $major > 9) {         return;     }     $showZero = true;     $ordersTotal = (int) Capsule::selectOne(         'SELECT COUNT(t1.id) AS total          FROM tblorders AS t1          LEFT JOIN tblorderstatuses AS t2 ON t1.status = t2.title          WHERE t2.showpending = "1"'     )->total;     $invoicesTotal = (int) Capsule::selectOne(         'SELECT COUNT(id) AS total          FROM tblinvoices          WHERE status = "Unpaid"          AND duedate < CURDATE()'     )->total;     $ticketsTotal = (int) Capsule::selectOne(         'SELECT COUNT(t1.id) AS total          FROM tbltickets AS t1          LEFT JOIN tblticketstatuses AS t2 ON t1.status = t2.title          WHERE t2.showawaiting = "1"          AND merged_ticket_id = "0"'     )->total;     if (!$ordersTotal && !$invoicesTotal && !$ticketsTotal) {         return;     }     $notificationsLabel = AdminLang::trans('setup.notifications');     $orderText = AdminLang::trans('stats.pendingorders');     $invoiceText = AdminLang::trans('stats.overdueinvoices');     $ticketText = AdminLang::trans('stats.ticketsawaitingreply');     $pendingOrdersJS = '';     $overdueInvoicesJS = '';     $awaitingTicketsJS = '';     if ($ordersTotal || $showZero) {         $pendingOrdersJS = "\n$('#v8fallback').next('ul').append('<li><a href=\"orders.php?status=Pending\" data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"{$orderText}\" data-original-title=\"{$orderText}\" style=\"word-wrap:break-word\"><small><span class=\"ico-container\"><i class=\"fad fa-shopping-cart\"></i></span><span class=\"v8fallback\">{$ordersTotal}</span> {$orderText}</small></a></li>');\n";     }     if ($invoicesTotal || $showZero) {         $overdueInvoicesJS = "\n$('#v8fallback').next('ul').append('<li><a href=\"invoices.php?status=Overdue\" data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"{$invoiceText}\" data-original-title=\"{$invoiceText}\" style=\"word-wrap:break-word\"><small><span class=\"ico-container\"><i class=\"fad fa-sack-dollar\"></i></span><span class=\"v8fallback\">{$invoicesTotal}</span> {$invoiceText}</small></a></li>');\n";     }     if ($ticketsTotal || $showZero) {         $awaitingTicketsJS = "\n$('#v8fallback').next('ul').append('<li><a href=\"supporttickets.php\" data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"{$ticketText}\" data-original-title=\"{$ticketText}\" style=\"word-wrap:break-word\"><small><span class=\"ico-container\"><i class=\"fad fa-question-circle\"></i></span><span class=\"v8fallback\">{$ticketsTotal}</span> {$ticketText}</small></a></li>');\n";     }     return <<<HTML <script> (function($){   $(function() {     var \$rightNav = $('ul.right-nav').first();     if (!\$rightNav.length) {       return;     }     \$rightNav.prepend(       '<li class="bt has-dropdown">' +         '<a id="v8fallback" href="#">' +           '<div class="badge-container">' +             '<i class="fas fa-exclamation-triangle always"></i>' +             '<span class="badge"><span class="fas fa-times"></span></span>' +           '</div>' +           '<span class="visible-sidebar">&nbsp;{$notificationsLabel}</span>' +         '</a>' +         '<ul class="drop-icons"></ul>' +       '</li>'     );     $("#v8fallback").on("click", function(e) {       e.preventDefault();       $(e.currentTarget).parent("li").toggleClass("expanded");     });     {$pendingOrdersJS}     {$overdueInvoicesJS}     {$awaitingTicketsJS}     $('#v8fallback').next('ul').css({"width":"340px","left":"-134px"});     $('span.v8fallback').css({"font-weight":"700"});   }); })(jQuery); </script> HTML; });  
    • 1. WHMCS 9.0.1 Support - We're Almost There! What once looked like a long compatibility roadmap is now entering its final stage. Today, we can confidently say that most of our marketplace is fully geared to work with the next-gen WHMCS 9.0.1 release! Here are the most recent modules that successfully completed the process: Client Area Designer For WHMCS - v1.1.17 Client Area Popup For WHMCS - v1.4.5 DirectAdmin Licenses For WHMCS - v1.5.5 Email Notifications Organizer For WHMCS - v1.0.5 GoDaddy Domain Registrar For WHMCS - v3.4.6 Marketing Triggers Automation For WHMCS - v1.2.1 QuickBooks Online For WHMCS - v1.11.4 Resellers Center For WHMCS - v3.14.7 Social Media Login For WHMCS - v1.4.5 → Explore all modules ready for WHMCS 9.0.1 Planning your move to WHMCS 9.0.1? Upgrading is easier when you know what to expect, so we gathered everything that tends to raise questions into one clear guide. It walks you through the areas worth checking, the steps worth taking, and the details that are easy to overlook when you are in a hurry. → Get helpful tips before upgrading to WHMCS 9.0.1   2. Winter Promotion - Final Days to Save Up to 30% As we move closer to spring, we are also preparing to close our Winter Promotion. For a few more days, you can still move forward with your custom WHMCS project and benefit from up to 30% OFF. The discount applies to all types of custom development work: It might be a repetitive task that could finally be automated. It could be a feature request that keeps resurfacing from your customer base. Or it may be an existing custom module that now requires adjustments to work smoothly with WHMCS 9.0.1. → Make the most of winter with 30% OFF custom WHMCS modules!   3. OVHcloud VPS & Dedicated Servers For WHMCS 1.3.5 - Now 20% OFF Working with OVHcloud? This week our OVHcloud VPS & Dedicated Servers For WHMCS module is featured as Deal of the Week, so you can grab it with a 20% discount! The module enables automatic provisioning of VPS and dedicated servers and gives you full control over key actions such as reinstallation, power management, reverse DNS configuration, and traffic monitoring. All of it happens within WHMCS, which means that: Orders are activated faster, Your team works from one consistent interface, Your customers can manage essential features directly from your client area. → Find out more about OVHcloud VPS & Dedicated Servers For WHMCS!   4. PanelAlpha Engine v1.0 - A Second Look at Performance When PanelAlpha shared their first benchmark results during the beta phase of their Docker-based Engine, the results showed clear potential. Since then, the project has developed into version 1.0 and beyond, with ongoing refinements shaped by real-world usage. To understand what has changed, PanelAlpha repeated the benchmark under comparable conditions, using the same class of server. The idea was not to create a new scenario, but to measure progress in a consistent environment. The performance test focuses on several key indicators: How average response time has evolved, How time to first byte behaves, How the Engine performs under higher concurrency, How it compares with traditional control panels. The full results, together with a detailed explanation of the methodology, are now available for anyone who wants to review the data carefully and form their own conclusions. → Explore the latest benchmark results for the PanelAlpha Engine!   Need WHMCS Module Development For Your Business? Get Your Free Quote Now! We can customize our modules to fit your exact needs or even create a completely new one from scratch to give your WHMCS platform an added boost!
    • Hostina – Premium WHMCS Hosting Template (RTL + LTR) If you're searching for the best WHMCS template, a modern web hosting template, or a professional hosting website design optimized for conversions — Hostina is built specifically for you. Hostina is a premium WHMCS theme engineered for: Shared hosting providers VPS hosting companies Reseller hosting businesses Dedicated server providers Domain registration services Cloud hosting platforms Unlike generic hosting templates, Hostina is built directly for WHMCS with a fully redesigned client area, optimized checkout flow, and bilingual RTL/LTR support. 🚀 Why Most Hosting Websites Lose Conversions Many hosting businesses invest in servers, infrastructure, and support — but still use the default WHMCS layout. Common problems: Outdated WHMCS design Poor checkout user experience Weak visual trust signals Broken or incomplete RTL support Inconsistent frontend & client area branding The result? ❌ Lower trust ❌ Higher cart abandonment ❌ Reduced conversion rate Hostina fixes all of this. 💎 What Makes Hostina Different? Hostina is not just a WHMCS theme. It is a complete hosting website solution. You get: ✔ Fully redesigned WHMCS client area dashboard ✔ Sidebar navigation for modern UX ✔ Styled orderform & optimized checkout flow ✔ Complete frontend hosting website template ✔ Arabic RTL + English LTR included ✔ SEO-optimized structure ✔ Core Web Vitals ready ✔ Mobile-first responsive design One purchase. Everything included. 🌐 Complete Hosting Website Template Hostina includes all essential frontend pages required for a professional web hosting business: Homepage with pricing tables & hosting plans Shared hosting / WordPress hosting pages VPS & Dedicated server layouts Reseller hosting pages Domain search & transfer Styled cart & checkout flow Blog & blog post layouts Contact page with form & map No need to buy additional templates. 📊 Custom WHMCS Client Area Dashboard Hostina introduces: Modern sidebar dashboard Clear service overview Clean invoice & billing layout Organized support ticket system Improved domain management UI Optimized login & registration pages Your customers experience a premium interface from login to payment. 🔥 Conversion-Focused Orderform & Checkout Checkout is where money happens. Hostina includes: Styled order form Clean product configuration Simplified checkout steps Trust-focused layout Mobile-optimized payment flow Designed to reduce abandonment and increase completed orders. 🌍 Arabic RTL + English LTR Support Hostina offers true bilingual support: Fully structured RTL layout (not mirrored hacks) Proper Arabic typography Clean English LTR version Language switching ready Ideal for Middle East hosting companies and global providers. ⚙️ Technical Specifications WHMCS Compatibility: Latest version. PHP Compatibility: Latest Version. Web Servers: Apache, Nginx, LiteSpeed, etc. Control Panels: cPanel, Plesk, DirectAdmin, etc. Optimized for: CloudLinux, LiteSpeed Cache, etc. Built using clean, lightweight code to improve performance and maintain SEO standards. 📈 SEO Optimized Hosting Template Hostina is built with: Clean HTML structure Optimized heading hierarchy Fast loading assets Mobile-first responsive framework Core Web Vitals optimization Schema-ready structure Helps improve visibility for keywords like: web hosting hosting services VPS hosting shared hosting domain registration WHMCS hosting 🖼️ Screenshots Preview 👉 View Full Gallery https://hostk.com/hostina-template 🧪 Live Demo 🌐 Frontend Demo https://demo.hostk.com/hostina/ 🇬🇧 English Version https://demo.hostk.com/hostina/en 🇸🇦 Arabic Version https://demo.hostk.com/hostina/ar 🔑 WHMCS Demo https://demo.hostk.com/index.php?systpl=hostina Login: test@hostk.com Password: test 👉 Get Hostina Today 💰 Pricing One-time payment: $69 ✔ No subscription ✔ Lifetime usage ✔ Updates included ✔ Instant download If Hostina helps you close just one extra hosting order, it pays for itself. 🏢 Who Should Use Hostina? New hosting startups launching their first website Existing hosting companies upgrading outdated WHMCS Domain resellers needing a modern interface Arabic hosting providers requiring real RTL support International hosting businesses targeting bilingual markets 🎯 Final Words In the competitive web hosting industry, design matters. Trust matters. Checkout experience matters. User interface matters. Hostina transforms your WHMCS into a professional, modern hosting platform that builds trust and drives conversions. If you're serious about growing your hosting business, upgrading your WHMCS design is not optional — it's strategic. 👉 Get Hostina Today
    • Hello, One of my clients has made an error (Ok, I admit it, I did it -does my honesty help?) I submitted an order for a client for hosting and the transfer in of several domains(all on the same order) Unfortunately I got one of the domains wrong and ordered the transfer of a .com instead of a .co.uk.  The order has submitted to ResellerClub and the two correct .com domains are in the process of transferring. I need to now fix the error I made and get rid of the .com domain and order the .co.uk version for transfer instead.   Any ideas on how I process this? Cheers Mike  
    • ok even more worrying  we have just had a clients invoice randomly paid by a credit note!! we didn't apply the credit note, we don't know where this random credit note came from, its not shown in the "Manage Credits"  If fact on further investigation it seem us marking an invoice as paid (if its a bank transfer)  it is creating new credit notes and applying them to the invoices as its paid and not marking it as bank transfer ?!  Worst still this is going out to the client via email as Ledger adjustment on the invoice receipt - not a payment, so they are getting in a muddle as well ! this does need to be fixed pretty damn fast please @WHMCS John! We are just taking over a company and repair shop at the moment so this is literally the worst possible time for us to seem like we are a bunch of unprofessional idiots due to nonsensical invoices going out.  im just about to transfer in 150 clients but we may have to hold this up or look to move to another system as we just cant have this ...
    • Have you tried these troubleshooting steps? https://docs.whmcs.com/9-0/troubleshooting/troubleshoot-cron-issues/cron-failures/
    • attached is the cron command i am told to use. still get the error
×
×
  • 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