Jump to content

Search the Community

Showing results for tags 'Update'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


WHMCS.Community

  • WHMCS Beta Program
    • WHMCS 8.7 Beta Discussion
  • The latest WHMCS Release
  • The Latest from the WHMCS Team
  • WHMCS.Community
    • Community Announcements
    • Introduce Yourself
    • MarketConnect Partner Product Status Updates
  • Using WHMCS
    • Pre-Sales Questions
    • Admin & Configuration Questions
    • Installation, Upgrade, and Import Support
    • Using WHMCS
    • Troubleshooting Issues
    • Vendor Discussions
  • WHMCS Showcase
    • Showcase Your Site
    • Share Your Best Practices & Tips
  • Developing & Extending WHMCS
    • Third Party Add-ons
    • Service Offers & Requests
    • Developer Corner
    • Building Modules
    • Share Ideas for WHMCS Modules
  • Community Competitions
    • News, Announcements & Blogs from WHMCS
    • Competitions
  • General Discussions
    • General Discussion
  • General Feedback & Assistance
    • Feedback
    • WHMCS.Community Tips & Tricks
  • Third Party Developers's Topics
  • Turkish International Discussions's Topics
  • Russian International Discussions's Topics
  • Spanish International Discussions's Topics
  • Portuguese International Discussions's Topics
  • French International Discussions's Topics
  • Italian International Discussions's Topics
  • German International Discussions's Topics
  • WHMCS Brasil's Topics
  • WHMCS Brasil's Tópicos
  • ModulesGarden Club's Topics
  • Hungarian International Discussions's Segítség
  • ThemeMetro Club's Topics
  • WHMCS Services Club's Topics
  • WHMCS Global Services Club's Topics
  • Katamaze's Free Scripts
  • Katamaze's Module Support
  • Zomex Club's Topics
  • 0100Dev Club's Topics

WHMCS Version

  • V8.6.x Hotfixes
  • V8.5.x Hotfixes
  • V8.4.x Hotfixes

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me

Found 22 results

  1. 1. DNS Manager For WHMCS 3.2.0Continuing on the recent trend we’ve established, another big player that has been subject to over a decade of active development has just been significantly enhanced - you love it because it allows the provisioning of DNS and rDNS zones with a large number of instruments. Ring any bells already? Right on, as DNS Manager For WHMCS should!You surely remember well when the migration of the module's addon to V3 came about. The official transfer of "DNS Zones" section, as well as "Servers" and "Record Sets" settings took place in the 3.1.0 update not too long ago, but the next part is already here!In today’s 3.2.0 release you will find a total of 4 crucial sections migrated to the module V3 addon: Global Settings Packages Blocked Strings Logs Furthermore, you are now empowered to export DNS zones to TXT files in BIND format! You’ll definitely be pleased to know that DNS Manager For WHMCS 3.2.0 features impeccable support for WHMCS V8.6 and PHP 8.1 – all 24 points of the changelog are waiting to be discovered!Read more about DNS Manager For WHMCS 3.2.0!2. Polish Language Translation For WHMCS 2.5.0Are you surprised by the traffic generated by your polish speaking customers? Maybe you speak polish yourself and have already wondered about a way to translate your system for a while? In both cases, you will highly benefit from the just updated Polish Language Translation For WHMCS 2.5.0!We’re excited to share that the hard work of our language and tech specialists has resulted in as many as 60 new or revised lines added to both the client and admin area! All that to deliver the best possible experience in the most recent WHMCS V8.6.1.Read more about Polish Language Translation For WHMCS 2.5.0!Another week passing means that we’ve rolled out another share of WHMCS V8.6 compatibility updates – see for yourself: EURid Registrar For WHMCS – v1.4.2 Freshservice For WHMCS – v1.0.3 GoDaddy Domain Registrar For WHMCS -v3.3.13 Kayako For WHMCS – v1.1.6 MX Registrar For WHMCS – v1.5.14 NIC IT Registrar For WHMCS – v1.4.2 WordPress Manager For WHMCS – v1.8.1 Zendesk For WHMCS – v2.4.1 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!
  2. We have released a more stable and feature-rich version 2.1.0 of the HostX WHMCS Theme. V 2.1.0 is now more stable and responsive than the previous versions. We have not left any stone unturned in this version, want to know what's new in this version? New Features 3 New Variations Introduced New Mobile Menu Introduced Mobile Menu Domain Search Introduced 7 New Blocks Added New Banner Images Introduced Fully Responsive DNS Management, Get Epp Code, Manage Contact, Email Forwarding and Private Name Server options added in Client Area. Product detail page add a button for Cpanel login, webmail login, cancel service, etc Overall UI Enhancements SEO Manager and OG Tags now supports Multiple Language Top Menu now supports Multiple Language Improvements & Bugs Fixes Responsive Improvements UI/UX Improvements Add Funds Issues Fixed TLDs Showcase pricing issue fixed VPS Page Checks has been fixed Stability of the theme has been enhanced Security of the theme has been enhanced New Versions Overview View More
  3. Hello, How to update the Credit Balance for a client after changing the Invoice and InvoiceItems? I'm using Paddle for processing my payments. When sending the invoice data to Paddle I send it without taxes. Then Paddle handles the taxes and at the Subscription Payment Success webhook I get if there are any taxes. Then I change the Invoice Items and the Invoice. ((((Don't know if UpdateClientProduct autorecalc is not working in v8.2 or it is used for something else)))) At the end I also update the Invoice with tax amount and the new total with taxes. I'm new with WHMCS (2 months now) and PHP (3 months). Now, I can't find the way how to update or trigger something to update the Credit Balance on the Summary for Client. It is still the old value that was before adding taxes to Invoices. Is there an API to update the Clients amounts, including Credit Balance and do I need to update something else after my changes to the Invoices? Here the part of the code that is doing this: $withoutTax = $fields['balance_fee'] + $fields['balance_earnings']; $taxAmount = $fields['balance_tax']; $withTax = $fields['balance_gross']; if ( $withoutTax <> 0 ) { $taxPercent = round(($taxAmount / $withoutTax) * 100, 2); } else { $taxPercent = 0; } if ( $taxPercent <> 0 ) { $itemTaxed = 1; } else { $itemTaxed = 0; } $command = 'GetInvoice'; $values = array( 'invoiceid' => $invoiceId, ); //$adminUsername = 'ADMIN_USERNAME'; // Optional for WHMCS 7.2 and later // Call the localAPI function $invoice = localAPI($command, $values, $adminUsername); logModuleCall('paddle_checkout_gateway_callback', 'UpdateInvoice_localAPI_invoice', $invoice, ""); if ($invoice['result'] == 'success') { foreach ($invoice['items']['item'] as $item) { //error_log($vars['invoiceid'].' item '.$item['id'].' has description of "'.$item['description'].'"'); $text = $item['description']; $updatedInfo = array( 'invoiceid' => $invoiceId, 'taxrate' => $taxPercent, 'itemdescription' => array($item['id'] => $text), 'itemamount' => array($item['id'] => $item['amount']), 'itemtaxed' => array($item['id'] => $itemTaxed) ); $updatedInvoice = localAPI('UpdateInvoice', $updatedInfo, $adminUsername); logModuleCall('paddle_checkout_gateway_callback', 'UpdateInvoice', $updatedInfo, $updatedInvoice); } } else { //echo "An Error Occurred: " . $results['result']; } // let's now trigger the recalculate of each hostingId from this updated invoiceid // I think that this is not working in v8.2 or the UpdateClientProduct autorecalc is used for something else $invoiceitems = Capsule::table('tblinvoiceitems') ->where('invoiceid', $invoiceId) ->where('type', 'Hosting')->get(); //->first(); foreach( $invoiceitems as $invoiceitem ){ //$invoiceitem->relid this is the id from the tblHosting table $resultOfAPI = localAPI('UpdateClientProduct', array('serviceid' => $invoiceitem->relid, 'autorecalc' => true), $adminUsername); logModuleCall('paddle_checkout_gateway_callback', 'recalculateProductItems', $invoiceitem->relid, $resultOfAPI); } // 20210927 maybe a bug in v8.2 // not updating the tax and the total amount of the invoice with UpdateClientProduct 'autorecalc' // manualy updating the table tblinvoices try { Capsule::table('tblinvoices') ->where('id', $invoiceId) ->update([ "tax" => $taxAmount, "total" => $withTax ]); } catch (\Exception $e) { logModuleCall('paddle_checkout_gateway_callback', 'recalculateProductItems_ERROR', "tax " .$taxAmount . " total " .$withtax ,$e); echo "Error in updating tblInvoices. {$e->getMessage()}"; }
  4. Security login adds an additional layer of security to your client area. If the user failed login attempts x times then the user remember his password and successfully login he need to enter a second passcode that will be send to his email this will make sure that the user is him and he is the one trying to login to his account and it's not another guy trying to get the user account. Features Countdown date picker Template system with 4 templates Social link for social media buttons Page content manager About us and contact us pages only for minigo template Google reCAPTCHA Subscribe form Export subscribers email addresses to CSV file Changelog Rewrite the code from scratch Improve the UI for admin area Improve move emails to email templates New login with verified link New disable security login if the client enable 2FA New google reCAPTCHA New setup the waiting time to request the PIN code resend New prevent email from saving in log New company logo and copyright in page For more details and screenshot visit the product page https://www.hardsoftcode.com/products.php?p=product&a=security-login ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Maintenance mode for WHMCS is for preventing any users other than administrators from using the site while maintenance is taking place, though it's not designed to prevent user access during version upgrades. When users attempt to access a course when your site is in maintenance mode, they obtain a message informing them that the site is in maintenance mode. If you wish, you can create a customized maintenance mode message, perhaps stating when the site will be available again or giving the reason for doing maintenance. Features Countdown date picker Template system with 4 templates Social link for social media buttons Page content manager About us and contact us pages only for minigo template Google reCAPTCHA Subscribe form Export subscribers email addresses to CSV file Changelog Rewrite the code from scratch Improve the UI for admin area New subscribe form New 3 new templates New google reCAPTCHA New export subscribers email addresses to CSV file New countdown date picker For more details and screenshot visit the product page https://www.hardsoftcode.com/products.php?p=product&a=maintenance-mode
  5. 1. Making Headway Towards Full WHMCS V8.0 Support As you most probably know, WHMCS V8.0 currently enjoys the beta status, and the stable version is only a matter of time as well. This can only mean one thing - we have once again put all our modules on the examination table! We are already releasing on a daily basis new WHMCS V8.0 and PHP 7.4 compatibility updates so catch up with all the latest releases, and stay on the lookout for more upcoming ones! cPanel Manage2 For WHMCS - v1.5.3 DirectAdmin Licenses For WHMCS - v1.4.1 Discount Center For WHMCS - v1.4.8 DNS Manager For WHMCS - v2.14.2 EURid Registrar For WHMCS - v1.3.3 Hosting Quota Notifications For WHMCS - v2.0.7 Name.com Registrar For WHMCS - v1.2.3 Password Manager For WHMCS - v2.2.10 Plesk Extended For WHMCS - v3.4.3 Quotes Automation For WHMCS - v2.1.3 Servertastic SSL For WHMCS - 1.4.4 Social Media Login For WHMCS - v1.3.6 Support Tickets Allocator For WHMCS - v1.3.4 Support Tickets Filter For WHMCS - v1.1.9 Unban Center For WHMCS - v2.3.2 WordPress Manager For WHMCS - v1.5.2 Browse the Complete Support List! 2. EasyDCIM v1.7.0 Release With the announcement of an all-new 1.7.0 version, EasyDCIM has once again hit the sweet spot by implementing a multi-purpose monitoring toolkit. This eagerly-welcomed feature simplifies greatly round-the-clock supervision of all devices and network ports, thereby allowing you to run your business without any risk of technical failure. This landmark event also includes the introduction of a brand new gear to a diverse collection of EasyDCIM-oriented modules. Advanced Monitoring For EasyDCIM has been designed to further extend the choice of actions to be performed within the area of monitors management. We also specifically recommend you check out the new mechanisms of system notifications, revisioned in such a way that you will never again miss any crucial change in the operation of your data center. Work Smarter Not Harder with EasyDCIM v1.7.0! 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!
  6. With the new Beta version of WHMCS 8.0 on the loose, we are going to great lengths to make all our modules work spotlessly in the updated system, and this can only mean diligent compatibility tests followed by the set of refreshments introduced to each product. As a matter of fact, quite a few of them are already confirmed to work flawlessly in the Beta environment, these are: Asterisk VoIP Center For WHMCS - v1.2.16 Client Area Designer For WHMCS - v1.1.6 Client Area Popup For WHMCS - v1.2.6 We have ensured several ways for you to easily supervise the ongoing progress: Monitor daily the official Forums thread – this is the go-to place to find out the compatibility status of any module available in our offer. Enter our Product Marketplace and seek products labelled with the green “WHMCS V8.0” tag. Follow closely our Facebook and Twitter profiles as we issue regular posts on each new version of our software. On a further note, please bear in mind the WHMCS V8.0 release is yet in the Beta phase. We strongly advise you to refrain from installing any of our modules in this new environment until they receive due optimizations. 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!
  7. hi everyone, i am getting error while creating/adding new clients. WHMCS says "Module Create Failed - Service ID: 1440 - Error: Error :" when automatically accepting an order. i get two records in tblorders in my whmcs database as well. same order with userid 1340 The actual account is created in server and whmcs but also duplicate order remains pending in WHMCS. WHMCS client Profile logs are: i have also added the update domainstatus to Active as it was creating the service before while CreateAccount; now it does create the account in server but again duplicate order is still there I'd appreciate your thoughts to help me resolve this issue please.
  8. I am new to WHMCS and so I am not sure I have the same problem via installation, but I am having the Blank Screen when I try to place/complete an order to for domain names. I am using OpenSRS' Domain Pro module to connect to OpenSRS. When I try to add OpenSRSPro or complete and order it just hangs and I am told this blank screen is a PHP issue. I am wondering if deleting the above php files will help me or if the above advice is only good for the upgrade mentioned above. I tried to turn on error reporting and reproduce the error so I can get a better idea what the error is, but it still is going to blank screen. I am not getting any error reporting in the module either. I am not sure what else to check. Any tips would be appreciated.
  9. I just did the upgrade from 7.4.2 to 7.5 on a system running PHP 7.0 and Ioncube Loader 10.1.0-22.17. I did have to upgrade Ioncube Loader prior to running the automatic upgrade, because I was using an older version. The upgrade said it completed successfully, and there were no error messages; however, now when I try to log on to WHMCS, I get a white screen with only this: Starting Loaded English Language File Loaded Other Language Files and then nothing. There are no error messages in the error logs, and no errors in the file where WHMCS is installed. Naturally, since I get nothing when I log in, I can't go into Setup -> General -> Other, and tick the box to display errors. I've tried clearing my cache, closed my browser completely and restarted, but all I can do is log in and then get the same screen. I used phpMyAdmin to go into tblconfiguration and set DisplayErrors to 1, but I don't get any error output on the page. I've gone through the list of articles on the troubleshooting page, and none seem to apply.
  10. Hi, I have a new issue, I'm not sure if is caused by deactivation of imageMagic. After I login into admin area, the summary page shows empty, no graphics, no information
  11. After an autoupdate, I recieved this message How can I fix this?
  12. Hey guys! I was unable to find a good way of updating bitcoin currency rates so I decided to create my own module to do this for me and that resultet in Anveto Currency Rates. This addon will update additional currency rates when the daily cron runs or when Anveto cron runs (see downloads here for anveto cron https://anveto.com/members/downloads/2/WHMCS) in order to update currencies multiple times daily. Currently it uses the bitpay (https://bitpay.com/api/rates) to get currency rates but you could set this to any source as long as it follows the same json format. The module costs $10 and can be purchased here https://anveto.com/members/cart.php?a=add&pid=21 It is currently pending community app store review. The source code is not encrypted as I want users to be able to modify this however they would like as long as they purchase the module. I hope some of you find it useful!
  13. What is Prpfile Update? Profile Update is a WHMCS addon module that send email notification and show alert message in client area for clients to reminding them to update their profiles in a certain month that the admin can setup from the profile update module settings. Client can go to his profile and update his information than the module will get the date the client update his profile and store it in database to send him notification in the futures. If the client profile is up to date he can click on a button to hide the alert message and update the date in the database Why do you need it? Web Hosting, domain resellers and other companies need their clients profile up to date to send them notification by email or home address. If the client change one of this important information and did not update his profile he may miss renewing his web hosting or domain and then lose his data and domain that's why we developed the profile update module. The profile update module will help WHMCS admin with sending the reminder email to clients every time the clients profile reach a date that admin has setup in the module settings How it works? After installing the profile update module the admin can enter the number of months before the update profile email sent to the client. Also the module will create 2 email templates and by creating the email templates the admin will have the ability to edit the emails subject and message also the admin can use multi language emails. With WHMCS cron job the module will detect all clients that pass the months the admin entered in module settings and then send emails to clients the email will include 2 links the first link is for logging the client automatically without a username and password then take him to his profile to update it. The second link is to confirm that the client profile is up to date and remove the alert message in the client area home page then update the date for the next profile update notification. Also the module will display an alert message in the client area home page to remind the client to update his profile the alert message comes with 2 button one for taking the client to his profile to update it the other button is to confirm that his information is up to date. Finally every time the client updated his profile an email will be sent to notify him if he's the one made the changes to his profile or not Features Ability to setup a certain month Create 2 email templates in email templates section under "General Messages" Notify clients by email to update his profile Notify clients by alert message in client area Notify clients by email every time his profile is updated Automatically logging clients from email and redirect him to profile Confirm button to confirm the client profile is up to date Redirect button to take the client to his profile Module can be translated to any language View the product Page View all our works and Products
  14. After updating to the 6.3 no prices are displayed when I make a product option up/downgrade. All prices are 0.00 in the selection list Has any of you here have a solution?
  15. I am looking for whmcs 6.3.0 Patch Sets. I currently have 6.2.2 and I want to upgrade. I just see full releases downloads on this URL: https://download.whmcs.com/ Please advise.
  16. I am wanting to switch from one credit card processing gateway to another but I want to make sure all of the existing customers get switched over to the new gateway. If I go ahead and set up the new gateway and then disable the existing gateway, will it ask me what gateway customers using the old gateway should be switched to? I vaguely remember doing this in the past but could find a definitive answer in the docs. If the above does not work, is there another way to easily mass update all of the customer to a new gateway? Best regards, Eric
  17. Hi any time there is a update I have to re-make all the customizations. How can I insert or remove lines on my templates using a child or sub system as Opencart (xml) or Wordpress (child themes for css and php functions)? Thank you!
  18. I had a customer that wanted to pay three months in advance. I added an invoice but if it's paid how will it push the due date o the actual product. Does the subscription ID have to match? Or how does the invoice update the product?
  19. /http://im82.gulfup.com/xsToJv.png The Simple Blog allows authorized Admin to blog. Blogs are a series of posts that are time stamped and are typically viewed by date as you would view a journal. Blog entries can be made public or private to the site members, depending on which roles have access to view content. Demo http://demo.alfnyhost.com/index.php?a=simple-blog Product Page https://www.alfnyhost.com/products.php?action=p&pid=9 Subdomain or different directory you can install the front end on a subdomain or directory for example your WHMCS is installed on clients.yourdomain.com and you can install the Simple Blog on blog.yourdomain.com Multi-Language Translations now you can add multi-language categories and posts the Simple Blog will change the language upon the customer language if he login into WHMCS. Also if the customer changed the language form WHMCS client are it will be changed in Simple Blog front end Unlimited categories and subcategories new you can add unlimited categories and subcategories Post Header Image with this you have 2 options to add images 1- From URL you just add the image url and the blog will get the image into the blog data folder. 2 - From your computer you just select the image from your computer and the blog will get the image into the blog data folder. Responsive Template we have designed Simple Blog to be multi devised friendly you will be able to brows the blog on your phone or tablet Comments admin buttons if admin are logged in WHMCS admin area and go to the blog front end you will be able to approve, banned, edit, delete comments you don’t have to go to admin area to do that Google recaptcha we have added google recaptcha to comment send box Template system you can setup the template form the blog settings and you have the ability to add more then one template in the templates folder RSS,Sitemap,Archive Social linking Google analytics and much more.
  20. We have found the frequently asked questions (FAQ) page a common request. This allows the WHMCS owner to list the most frequent asked questions from their customers with the answers. WHMCS FAQ is designed to allow you to quickly add and manage a collection of frequently asked questions which can be displayed on your website. Any site that requires information to be organized in easily accessible format can utilize The FAQ module. It’s simple functionality displays information that is easy to navigate and read by a site’s visitor. Just add the module and it will do the rest. It’s that simple. Product Page http://www.alfnyhost.com/products.php?action=p&pid=7 Project Features Multi-Languages The module use Multi-Languages you will be able to add categories and question/answers in different language Categories With the Categories you can organize your question/answers very easy SEO Friendly URLs All Faq URLs are friendly's you just need to activate this from the admin area Description/Keywords We also added Description and Keywords to the categories and FAQ homepage Template System The FAQ module include a template system so you can create your own template design
  21. After upgrade (incremental from 5.2.15) to 5.2.16 can't see on administrative backend any domain of my customers. xxxxxx/clientsdomains.php?userid=AAA&domainid=YYYYY Blank page. Apreciate help.
  22. WHMCS - Bulk Domain Updater The "Bulk Domain Updater" addon solves the problem when you need to update the same nameservers to many domains! We build an Intelligent AJAX Search and returns results when the keyword matches with domain name or when matches with client full name /company and returns ALL domains of this client! The "Bulk Domain Updater" works with AJAX, so there is nothing special to do, just type keywords! Features Domain Intelligent AJAX Search (Results based on domains names or based on Client's Fullname/ company name) Retrives the current Domain Namerserver's It detects if a hosting package is assigned to domain Mass AJAX Daomain Nameservers 1-4 Update Ability to change Server package to each hosting plan Add easy domains into the or remove them. No special abilities required. Domain Lock status switch from locked to unlocked and revert back the status after the Namerserver's Update Ideal for Mass Domain nameservers Change Server Transfer (nameservers update+ Server package) Search and brief display per domain or client's domains More at http://web-expert.gr/en/whmcs-addons/whmcs-bulk-domain-updater-nameservers
×
×
  • 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