Search the Community
Showing results for tags 'SSL Certificate'.
Found 11 results
-
1. Have a new year filled with health and prosperity! It’s with great pleasure that we wish you all a fabulous new year, filled with only success, fresh inspirations and fulfillment in both your business undertakings and personal life. Happy 2023! The beginning of January is the perfect time to reflect back upon the exciting endeavors carried out in the past year – that’s why we all recently got together to celebrate the many milestones delivered in 2022. Here’s just a quick taste: Welcoming 2615 new clients, Releasing Lagom One Step Order Form For WHMCS, Making next steps towards WordPress revolution with PanelAlpha! So, why don’t you head to our Blog to see some photos and take a little trip down memory lane? View the impressive 2022 recap! 2. Hetzner VPS For WHMCS 1.8.0 Although each day brings us closer to having every module added to our official WHMCS V8.6 Support List, the pace at which our developers work doesn't slow down for a split second. Having seen the WHMCS V8.7 beta release, our unstoppable team has delivered the first module to receive full integration! Providing virtual machines to clients in a manual way may become an impossible task in the case of a large audience, so allow us to introduce a tool that will let you do it a completely automated manner: Hetzner VPS For WHMCS! The just out 1.8.0 version has a few more tricks up its sleeve other than the mentioned compatibility – let’s take a closer look: Adjust the scope of information about servers available in the client area. Enjoy the option of a default subnet being created automatically along with a new network. Empower your clients to easily delete existing backups when they're no longer needed. Speed up the process of removing items from the "Networks" subsections by allowing customers to perform this action in bulk. Make sure to drop by our website and discover everything Hetzner VPS For WHMCS 1.8.0 has to offer at a special 10% discount! Read more about Hetzner VPS For WHMCS 1.8.0! 3. MetricsCube with new Financial Reports We were more than amazed at the recent comeback made by the MetricsCube team – having been hard at work for some time, they have revealed an entirely new section, developed with the sole purpose of gaining even quicker and more effortless insight into the money-related aspects of your enterprise – Financial Reports! From now on, you are provided with as many as 7 premium reports to handle the details of your invoices, transactions, orders and more! Do you tend to be forgetful when it comes to keeping up with your reports? Don’t worry, the automatic export feature has got you covered. This update also brings a variety of either improved or completely rewritten reports - go ahead and learn all about it on the MetricsCube Blog! Read more about the new Financial Reports! 4. GoGetSSL For WHMCS 2.8.2 & Latest Updates If you thought this was the end of brilliant news, here we come to wow you once again! GoGetSSL For WHMCS 2.8.3 has just been released – we have lately improved this free toolkit for the management of provisioning of SSL certificates even more, but in what specific ways you’ll have to see yourself. Moreover, as it’s already been brought up, the WHMCS V8.6 support is being added to next modules as we speak - check out the latest releases: Domain Allocator For WHMCS - v1.0.13 QuickBooks Online For WHMCS - v1.9.1 Quotes Automation For WHMCS - v2.2.4 Suport Tickets Allocator For WHMCS - v1.3.10 Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- Modules Garden
- (and 20 more)
-
1. Email Notifications Organizer For WHMCS - 25% OFF!Our team never misses the opportunity to enhance an already existing product, but creating a fresh piece of software entirely from scratch is especially rewarding. Let’s welcome another member of our marketplace – Email Notifications Organizer For WHMCS!Now you can introduce a whole new level of convenience to your clientele, by sending them data from multiple email notifications about unpaid invoices or expiring domains in the form of single messages. You will be able to set a custom template and delivery time for such notifications and see summaries of blocked and delivered emails for a chosen time period. Quite extraordinary, isn’t it? You'll optimize the usage of your server resources and immediately notice extra space, not to mention the reduced carbon footprint of your entire enterprise.It’s also been equipped with support for the latest WHMCS V8.6 and PHP 8.1, so go ahead and add a unique boost to your business now at a phenomenal 25% discount!Read more about Email Notifications Organizer For WHMCS!2. Another Set of WHMCS V8.6 Compatibility Updates WHMCS V8.6 has just been promoted to General Availability, meaning it’s now the recommended version for all installations and updates. Right after having heard the news, we’ve focused completely on equipping our products with impeccable support! Report Generator For WHMCS 4.3.0 with ACL is certainly a highlight, but let’s check what other products have also joined the official compatibility list of late: Client Area Popup For WHMCS – v1.3.5 DirectAdmin Extended For WHMCS – v3.9.1 Google Cloud Virtual Machines For WHMCS – v1.3.1 Hetzner VPS For WHMCS – v1.7.1 Product Feedback Center For WHMCS – v2.1.1 3. GoGetSSL For WHMCS 2.7.9We’re closing in on this week’s set of news by sharing one more update, this time to our completely free toolkit designed to supply your clients with SSL certificates – GoGetSSL For WHMCS 2.7.9. View the changelog and see what’s new!Read more about GoGetSSL For WHMCS 2.7.9!Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- Modules Garden
- (and 19 more)
-
I'm doing some minor changes to our client clientareahome.tpl to display list of available hosting services associated with this user no client area home page, using the {$customerHostingData} that is already available on the page through a hook, <?php use Illuminate\Database\Capsule\Manager as Capsule; function hook_pullingLastCustomerWebsite($vars){ $client = Menu::context('client'); $hostingData = Capsule::table('tblhosting') ->where('userid', $client->id) ->where('domain','<>','') ->select('id','domain','domainstatus','packageid') ->orderBy('id', 'DESC') ->get(); $encodedata = json_encode($hostingData); $decodedata = json_decode($encodedata, true); return array("customerHostingData" => $decodedata); } add_hook("ClientAreaPageHome", 1, "hook_pullingLastCustomerWebsite"); i was able to loop through the {$customerHostingData} array as {$site} and display all the information i need my customers. This is my $customerHostingData as provided by WHMCS default installation array(5) { [0]=> array(4) { ["id"]=> int(1856) ["domain"]=> string(19) "example.net" ["domainstatus"]=> string(6) "Active" ["packageid"]=> int(1) } [1]=> array(4) { ["id"]=> int(1851) ["domain"]=> string(17) "example2.net" ["domainstatus"]=> string(6) "Active" ["packageid"]=> int(54) } [2]=> array(4) { ["id"]=> int(1481) ["domain"]=> string(12) "example3.net" ["domainstatus"]=> string(6) "Active" ["packageid"]=> int(54) } [3]=> array(4) { ["id"]=> int(1320) ["domain"]=> string(17) "example4.com" ["domainstatus"]=> string(6) "Active" ["packageid"]=> int(54) } [4]=> array(4) { ["id"]=> int(667) ["domain"]=> string(24) "example5.com" ["domainstatus"]=> string(6) "Active" ["packageid"]=> int(54) } } Now i have implemented a login button on every hosting account on the list to redirect customer to their website dashboard URL URL: can be http or https://{$site.domain}/dashboard/login the problem that i'm facing with the code above is that the {$customerHostingData} array do not contain any information about the ssl status on account, to basically i cant check if the ssl is active or not? So how can i make this type of check to determine which hosting account on the array has active SSL certificate? Any ideas?
- 2 replies
-
- SSL
- ssl certificate
-
(and 1 more)
Tagged with:
-
1. WHMCS V8.6 Compatibility List Having recently heard the news about the coming of WHMCS V8.6 Release Candidate, our developers immediately took action and set the aim to update every module in our offer with the support for this latest edition. Working around the clock, our team has already enriched Domains Reseller For WHMCS and many other products with flawless WHMCS V8.6 compatibility, and continues to make the whole list larger every day! View the official WHMCS V8.6 Support List! 2. PanelAlpha boosts efficiency with new Quick Onboarding Process! The development of PanelAlpha, our revolutionary system for the management and provisioning of WordPress instances has seen some substantial progress lately, the effects of which we are ready to reveal. To provide your clients with the possibility to start working on their sites in just a few moments, we have created the Quick Onboarding Process, as an alternative to Classic Onboarding. Just three steps are now enough to begin! You can look forward to more additions, as we plan on introducing the option to share access to instances for your customers and creating PanelAlpha's own admin area in order to equip you with a huge array of tools. The real question here is, can you already test the spanking new Quick Onboarding out? Yes, thanks to the live demo of PanelAlpha, accessible all the time! Get up close and personal with PanelAlpha’s Quick Onboarding Process! 3. Lagom One Step Order Form For WHMCS 1.1.1 You’ve only recently heard the news about the record-breaking 1.1.0 version of Lagom One Step Order Form For WHMCS, which has revealed as many as 16 brand new features, but we’re here to show that we don’t intend to slow down in any way. The 1.1.1 update will bring even more efficiency to our on-trend order form, making sure that every refinement runs as smoothly as possible. Read more about Lagom One Step Order Form For WHMCS 1.1.0 & 1.1.1! 4. GoGetSSL For WHMCS 2.7.6 & 2.7.7 That’s right, our completely free toolkit for the management and provisioning of personalized SSL certificates has received not one, but two updates as of late. In the latest version you will be met with more optimizations, so go ahead and discover the details yourself! Read more about GoGetSSL For WHMCS 2.7.6 & 2.7.7! Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- Modules Garden
- (and 16 more)
-
1. Product Free Trial Manager For WHMCS - NEW & 20% OFF! There is one, very simple way, to get potential clients interested in your products, other than just advertising. What could it possibly be? Allowing anyone to test out a product before the final purchase at no expense! The most recent addition to our marketplace, Product Free Trial For WHMCS, does exactly that – it lets you apply trial access to chosen products and conveniently manage its accessibility and details! With this module, you will be able to offer your clients an actual taste of what you’re selling, for as long as you decide. After all, we are always more eager to buy a solution tried out personally, so jump straight to our marketplace and see the full potential of Product Free Trial Manager For WHMCS, at an amazing 20% discount! Read more about Product Free Trial Manager For WHMCS! 2. Put breaks on spendings with Inactive Account Manager For cPanel! After changes in the pricing model of cPanel, many of its clients were left with the dilemma whether to transition, or stay and adjust. However, some don’t want to say goodbye to cPanel’s features, so we have an interesting solution! Inactive Account Manager For cPanel provides you with the possibility to detect and monitor inactive web hosting accounts on your servers. Automated or manual suspension and termination of those will let you significantly cut down on licensing costs! Let yourself be surprised with how much time and money gets saved with our module with almost no manual intervention, now at a fabulous 20% discount! Read more about Inactive Account Manager For cPanel! 3. EasyDCIM Blog’s take on dedicated server automation! There is an abundance of systems on the market that introduce automation for web hosting providers offering dedicated servers. However, the differences can be equally countless and as a result the right choice even harder to make! EasyDCIM Blog has completely covered this issue in their most recent entry, which gives more insight into why automation is so needed and provides a thorough description of four most commonly used systems, including WHMCS, making your final choice a wise one! If you haven’t already, spend some more time on the Blog to get to know all exciting features of EasyDCIM v1.9.1, such as new actions for handling colocation orders! Read more about dedicated server automation and EasyDCIM v1.9.1! 4. GoGetSSL For WHMCS 2.7.5 The role of SSL today is more crucial than ever, especially taking cyber threats into account. The entirely free GoGetSSL For WHMCS will enable you to supply and manage SSL certificates right from your website! The latest 2.7.5 version has been recently released and contains important adjustments to the process of provisioning SSL certificates, which make it even more comfortable. How did we do it? Check it out yourself! Read more about GoGetSSL For WHMCS 2.7.5! Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- Modules Garden
- (and 11 more)
-
1. Google Cloud Virtual Machines For WHMCS 1.3.0 Our highly reviewed module Google Cloud Virtual Machines For WHMCS has become even more useful in deploying virtual machines via seamless Google Cloud integration, now also spiced up with full WHMCS 8.5.1 compatibility! The newly implemented options cover a quick creation of instances, using either a machine template chosen in the product configuration or a configurable option. Moreover, the type and size of a disk as well as the number of IPv4 addresses can be utilized as configurable options after being generated. The 1.3.0 version also features significant improvements and fine-tuning, caring - as always - for the excellence of user experience. Read more about Google Cloud Virtual Machines For WHMCS 1.3.0! 2. PanelAlpha reaches a milestone growth stage with Personal Hosting Toolkit! The results of many busy weeks are now presented to you in the live demo of PanelAlpha - the standalone toolkit for WordPress instances which is currently being created by the ModulesGarden team. With the brand-new My Hosting section, your clients will control domains, MySQL databases, DNS zones, and multiple other crucial components of their accounts without ever using any external platform! Other exciting fresh features include: The Style Manager responsible for the client area customization using a plethora of colors and other eye-catching effects. Quicker addition of new sites, by inserting just the most important data with the option to add more later under "Advanced Configuration". Experience the spanking-new PanelAlpha via live access! 3. Selling dedicated servers – The possible future for your company The implementation of dedicated servers may open a brand-new path of profitability when done reasonably. This new solution needs bigger investments than VPS or shared hosting, may however surpass them! The latest publication uploaded by the team of EasyDCIM describes in detail all probable advantages and disadvantages of selling dedicated servers, their requirements, finally providing you with an extensive guide on taking your first steps in the subject. Keep on reading to become familiar with this promising idea! 4. GoGetSSL For WHMCS 2.7.4 Possibly the most unexpected, but equally great info: GoGetSSL For WHMCS 2.7.4 is out and completely free to download! The aim of the latest version is to empower you to set the currency conversion rate in the addon module. Thanks to this new feature, the process of setting prices for SSL products in bulk when the WHMCS currency differs from the one used by GoGetSSL will become far more convenient! Read more about GoGetSSL For WHMCS 2.7.4! Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- Modules Garden
- (and 15 more)
-
1. OVH VPS & Dedicated Servers For WHMCS 1.2.0 OVH VPS & Dedicated Servers For WHMCS has just been boosted with another significant update! The new 1.2.0 version lets you offer fully-suited virtual machines and dedicated servers powered by brands like So you Start and Kimsufi directly from the WHMCS V8.1 level. The module will make your provisioning venture even more efficient and customer-friendly also with such interesting additions as support for the OVH renewal functionality, as well as flexibility in adjusting the range of "Service Information" details that your clients will see without leaving your website. Eager to know this powerful release better? 2. IP Manager For WHMCS 2.5.9 The freshly released 2.5.9 version is here to give you all the more reason to fall in love with the top standard of comfort that our IP Manager For WHMCS channels into the complex management of IP subnets. Today, we are proud to announce the establishment of integration that has been expected with deep interest - the module now features WHMCS V8.1 and „Twenty-One” theme support! There’s more so you’d better have a look at the entire changelog! 3. Like to keep your finger on the pulse at all times? Find the most recent releases below: Client Area Designer For WHMCS - v1.1.8 Client Area Popup For WHMCS - v1.2.7 GoGetSSL For WHMCS - v2.5.9 Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- Modules Garden
- (and 15 more)
-
1. Products Reseller For WHMCS 1.1.0 The module we have put through quite a shake-up recently is our crowd-pleasing Products Reseller For WHMCS specialized in effortless reselling of products and services of absoluetly any kind, and in absolutely any platform. Result? A couple of powerful new features within just a single 1.1.0 update! For starters, the tool has embraced a well-deserved label confirming its unblemished support for the WHMCS 8.1 environment. Another compelling argument why Products Reseller For WHMCS may mark a turning point in your career? The module’s freshly established integration with GoGetSSL For WHMCS and GoDaddy SSL For WHMCS which opens up a whole new way of using its extensive toolkit to resell SSL certificates. Let your offer gain worldwide recognition with Products Reseller For WHMCS 1.1.0! 2. Live Dashboard in new MetricsCube! Tried all possible ways to keep your WHMCS data in apple-pie order and under regular check, but nothing really worked quite as you expected? It is a perfect moment then to discover the impressively updated MetricsCube! In its most advanced edition, MetricsCube doesn’t just compile in-depth reports and statistics. It gathers all the most important data your business produces right here and now, and organizes them into eye-pleasing widgets with charts and statistics straight on the spanking new Live Dashboard! To keep our free MetricsCube Connector For WHMCS up to speed with the latest developments, the module received a solid 2.2.3 update that ensures its perfect harmony not only with the all-new Live Dashboard, but with the major WHMCS V8.1 release as well. Pilot your company to dynamic growth with MetricsCube! 3.Stay plugged-in on other modules promoted to a new version recently: DirectAdmin Extended For WHMCS - v3.4.4 WordPress Manager For WHMCS - v1.5.4 Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- WHMCS8
- (and 15 more)
-
1. OpenStack Projects For WHMCS - NEW! We are genuinely pleased to announce the launch of another ingenius module - OpenStack Projects For WHMCS! This enormously valuable tool will let you automatically provision and manage all key configuration elements of OpenStack projects without leaving your WHMCS. While your customers will be offered different bundles of resources that can be further adjusted with the help of configurable options, you will easily handle such essential aspects as the project’s status and mode features, as well as roles that shall be assigned to its users. Eager to multiply the advantages? Go ahead and integrate the module with Advanced Billing For WHMCS to charge your clients for the actual amount of used resources. Grab this entirely new piece of software gear via the ongoing Deal Of The Week, and save 20% in the process! Turn the vision of building up a lead on the market into reality with OpenStack Projects For WHMCS! 2. Lay the groundwork for the upcoming Black Friday craze! With the Black Friday frenzy being just about to explode all over the world, business owners have already started fierce preparations, struggling to outdo one another in ever-more attracting bundle pricing and promotions. Specially for you we have brought together all the modules that will help you go beyond the basic offerings, and thus give you a strong competitive edge during the world’s favorite shopping bonanza: Discount Center For WHMCS - this tool will serve as a perfect supplement to your Black Friday promotion campaigns as it has been designed to expand the range of advanced discount attributes that will be handled automatically in your WHMCS! Product Cross-Selling For WHMCS - noticed how your clients tend to buy certain products together more often than the other items? Use this trend to your best advantage during the shopping craze by suggesting related and recommended products to your customers as they shop on your website. To broaden the appeal of these personalized recommendations even further, you may also integrate the module with the aforementioned Discount Center For WHMCS to introduce exclusive bargains available nowhere else but in your client area. Client Area Popup For WHMCS - compose, organize and display eye-friendly pop-ups across the client area to take your Black Friday promotions out to where it actually counts - that is, of course, straight to the customers! Hosting Renewals For WHMCS - as a part of its mission to boost the process of renewing hosting services, this module will allow you to set up various inviting discounts to be applied automatically upon the alteration of a product’s billing cycle. Product Linker For WHMCS - thinking of branching out into the potential of cross-selling strategy for Black Friday? Use Product Linker For WHMCS to create assorted order relations and sell your products, addons, as well as configurable options in attractive bundles! Resellers Center For WHMCS - if you would like to offer your resellers a complete solution to manage generated sales via WHMCS, covering the possibility to fix up personalized discounts for end clients, this is the job for Resellers Center For WHMCS. Products Reseller For WHMCS - the module is well-regarded for its powers to allow seamless reselling of products and services of any kind. Will the freedom of setting up custom pricing rates and handling other details of your reseller groups via WHMCS help you gain a competitive edge during the Black Friday shopping spree? There is only one way to find out! Domains Reseller For WHMCS - if you run a domain reselling business, you should follow one cardinal rule that seems to be even more applicable during such huge bargain events as Black Friday: keep your resellers happy, and they will pay it forward! This goal can be easily achieved with Domains Reseller For WHMCS that will empower your resellers to quickly preview their individual pricing rates and orders placed by acquired clients along with other key details organized neatly in the Reseller Area. Seek any further guidance on Black Friday strategies? Let's put our heads together! 3. GoGetSSL For WHMCS v2.5.0 Your SSL certificate provisioning venture is one step from having the workflows streamlined even a notch further! Our FREE GoGetSSL For WHMCS has received a rich variety of improvements upon the recent update into the 2.5.0 version. In the first place to capture your interest awaits flawless compatibility with WHMCS V8.0! How about heading over to the full module changelog now? Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
-
- ModulesGarden
- OpenStack
- (and 10 more)
-
Validity period not valid" Customer bought a RapidSSL through MarketConnect and when I try to enter the CSR info logged in as him or from the manually configure section I keep getting this error. He has a .co domain, but I put in the CSR and all the information and when I select his admin@domain.co and click next I keep getting this "Validity period not valid" error. He did buy a 24 month cert. could it be he needs to purchase a 12 month cert? I checked my server time and it's set to EST. I just can't see any reason this would error out when trying to submit the request from WHMCS. any ideas?
- 3 replies
-
- MarketingConnect
- SSL
-
(and 2 more)
Tagged with:
-
Today, much to our delight we present you the unbeatable fusion of innovation and security - our DirectAdmin Extended For WHMCS 2.2.0 reinforced with Let’s Encrypt support! Let’s Encrypt is a quality platform designed to optimize the acquisition of SSL/TLS certificates for websites. It comes with no charges, no validation emails and the certificates renew automatically. Seems too good to be true? With the latest update of DirectAdmin Extended For WHMCS, the entire implementation can be handled with a single click, without leaving your WHMCS! When exploring the new possibilities offered by the 2.2.0 version, be sure to give special consideration to the extra flexibility of the module’s configuration. You are no longer bound by the packages when setting up a product – now you can use the exact API features you need! Learn All About DirectAdmin Extended For WHMCS! EasyDCIM v1.4.0 is here to amaze you with the world-shattering revamp of Admin Experience! We will not spoil all the electrifying news here but the visual and conceptual makeover of the entire system along with the updates of OS Installation For EasyDCIM and IP Address Management For EasyDCIM modules surely deserve a special mention! Coming Soon: DNS Manager For WHMCS – v2.7.0 Account Synchronization For WHMCS – v1.6.0 Domain Orders Extended For WHMCS – v2.7.0 Do You Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
- 1 reply
-
- directadmin
- easydcim
-
(and 3 more)
Tagged with: