snake Posted February 1, 2017 Share Posted February 1, 2017 4 years later, and the link is still broken and giving an error, yet on the marketplace it says it has been updated to support whmcs 7.1 0 Quote Link to comment Share on other sites More sharing options...
sgonzalez Posted February 6, 2017 Share Posted February 6, 2017 Any alternative for this? link is dead.. 0 Quote Link to comment Share on other sites More sharing options...
Juanzo Posted June 30, 2017 Share Posted June 30, 2017 I'd love to know if there is an alternative for this as well. On the meantime, I'd advice everyone interested to vote here. 1 Quote Link to comment Share on other sites More sharing options...
sgonzalez Posted June 15, 2018 Share Posted June 15, 2018 I was able to make this plugin Work. It works with any version of WHMCS ( Tested it from v7.5 and works fine ) but this plugin REQUIRES PHP 5.6 (it doesnt work with php 7.0 nor 7.1). If you need any more help please PM me. THanks! 0 Quote Link to comment Share on other sites More sharing options...
PixelPaul Posted June 25, 2018 Share Posted June 25, 2018 can someone supply me the module? i really need it but can't seem to get it. thanks. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted June 25, 2018 Share Posted June 25, 2018 9 minutes ago, PixelPaul said: can someone supply me the module? i really need it but can't seem to get it. it seems to have been removed now from Marketplace, so along with it being removed from the developers' site, it's probably to be considered a dead addon (at least for now). however, there is an alternate product in Marketplace, Auto Recalculate Prices for $15, that seems to do price recalculation (either manually or via the cron) - I don't think it's the same author though, but is at least marked as being v7.5 compatible.... admin demo mentioned doesn't work, so I haven't tried the module myself. 0 Quote Link to comment Share on other sites More sharing options...
CaribeHost Posted August 27, 2018 Share Posted August 27, 2018 On 6/25/2018 at 5:02 AM, brian! said: it seems to have been removed now from Marketplace, so along with it being removed from the developers' site, it's probably to be considered a dead addon (at least for now). however, there is an alternate product in Marketplace, Auto Recalculate Prices for $15, that seems to do price recalculation (either manually or via the cron) - I don't think it's the same author though, but is at least marked as being v7.5 compatible.... admin demo mentioned doesn't work, so I haven't tried the module myself. Hello, I am the developer of the Auto Recalculate Prices addons, the testing environment is enabled and you can do all the tests you want. I leave the link to the Marketplace of the addons https://marketplace.whmcs.com/product/4017 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted August 27, 2018 Share Posted August 27, 2018 11 hours ago, CaribeHost said: Hello, I am the developer of the Auto Recalculate Prices addons, the testing environment is enabled and you can do all the tests you want. it's a pity there is now a $15 USD setup fee - that may put some buyers off from getting the addon. 0 Quote Link to comment Share on other sites More sharing options...
CaribeHost Posted August 27, 2018 Share Posted August 27, 2018 22 minutes ago, brian! said: it's a pity there is now a $15 USD setup fee - that may put some buyers off from getting the addon. hello, the module has new features and will have new ones, the recurring value will be 15 usd per year, also enable the monthly, quarterly and biannual cycles, as well as a 7 day trial license for your test 0 Quote Link to comment Share on other sites More sharing options...
UltimateNodes Posted October 15, 2018 Share Posted October 15, 2018 Why do I have to pay an installation fee? I am not planning to let you anywhere near my WHMCS installation. 0 Quote Link to comment Share on other sites More sharing options...
CaribeHost Posted October 15, 2018 Share Posted October 15, 2018 the value of the fee does not refer to the installation, it is only a value that we charge only once when acquiring the license 0 Quote Link to comment Share on other sites More sharing options...
CaribeHost Posted October 15, 2018 Share Posted October 15, 2018 4 hours ago, UltimateNodes said: Why do I have to pay an installation fee? I am not planning to let you anywhere near my WHMCS installation. the value of the fee does not refer to the installation, it is only a value that we charge only once when acquiring the license 0 Quote Link to comment Share on other sites More sharing options...
UltimateNodes Posted October 16, 2018 Share Posted October 16, 2018 Fair enough so maybe call it "initial licence fee" then, considering you are not actually offering an installation service? 0 Quote Link to comment Share on other sites More sharing options...
Duncan5 Posted May 2, 2022 Share Posted May 2, 2022 Hi There, Is there a similar module that will do the same 0 Quote Link to comment Share on other sites More sharing options...
Juanzo Posted January 25, 2023 Share Posted January 25, 2023 Module for CaribeHost works perfectly, hopefully it's updated for PHP 8 soon. 0 Quote Link to comment Share on other sites More sharing options...
mroxidane Posted January 3 Share Posted January 3 Any alternative in this regard? Is there any other module or hook available? 0 Quote Link to comment Share on other sites More sharing options...
SimpleSonic Posted January 4 Share Posted January 4 On 1/3/2024 at 8:24 AM, mroxidane said: Any alternative in this regard? Is there any other module or hook available? You can use the following hook: <?php /* * Hook to automatically recalculate pricing for services and domains after daily cron is ran */ if (!defined("WHMCS")) die("This file cannot be accessed directly"); use WHMCS\Database\Capsule; add_hook('DailyCronJob', 1, function($vars) { logActivity('Starting autorecalculate for services and domains ', 0); $adminUsername = ''; // Optional for WHMCS 7.2 and later foreach(Capsule::table('tblhosting')->pluck('id') as $v) { localAPI('UpdateClientProduct', array('serviceid' => $v, 'autorecalc' => true), $adminUsername); } foreach (Capsule::table('tbldomains')->pluck('id') as $v) { localAPI('UpdateClientDomain', array('domainid' => $v, 'autorecalc' => true), $adminUsername); } logActivity('Ending autorecalculate for services and domains ', 0); }); 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.