Jump to content

NickJ

Member
  • Posts

    9
  • Joined

  • Last visited

About NickJ

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

NickJ's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. exactly and agree totally there has to be some safeguard for spam, but that also falls on the persons hosting not really WHMCS to control that, I pay for business Mailjet and have no limit per day of how many emails I can send unto 20K a month and my whims goes out via their smtp, so if I wanted to notify or send out a special time offer to 10K people I could send all quite fast via their system, but at 25 per cron run with 5 minutes being the standard by the time the last person got their email the offer would have finished. before this version we had mass email which worked fine & was fast, this is just poor and means people have to spend extra cost doing something that the system should be able to quickly. I could understand if mail routed out via whmcs but it's a standalone so surely that falls to the owner to decide how often they send ? maybe the code / process cannot handle collating more than 25 but it did in the previous version having an email campaign nailed to 25 emails every 5 minutes is ok if you have 50 clients, but far from ok if you have 1000's
  2. sending 25 emails every 5 minutes of a cron is just ridiculous in this day and age, if we have a paid service like Mailjet we should be able to send out how many we want per 5 mins imagine a critical update notification email to be sent out to 10K people at 25 emails every min or 5 minute cron - its just silly so if whmcs are not going to address this what are the alternatives ? any modules or addons to bypass and do mass email a different way out maybe ?
  3. on the stripe whmcs module no fee detail shows, seems there are some issues with the inbuilt modules from whmcs
  4. anyone ? latest whmcs, latest paypal module from whmcs, why is the paypal fee correct on the inside, but rounded up on the outside where stats are shown ??
  5. Hi All, Has anyone had the problem where the fee amount shown on the WHMCS Cart doesn't match what the payment provider shows ? for example selling & receiving in pounds the paypal fee on their site for the transaction is £0,55 but on my WHMCS transaction view it shows as £1 if 0,55 is correct why is it rounding up to £1 ? is there something that needs to be done to get them to align properly ? or is this a known bug ? Thanks
  6. Hey all, has anyone come across some way that a client could simply click to resend their product welcome email (that has the details for their setup item etc) , if they misplaced the one that arrived with product purchase etc would be great for customers to be able to do that instead of admins, of course with some rules like 1 request a day to prevent mail out spam etc just wondered if anyone had done this or can think of a way it could be achieved Cheers
  7. I recently swapped to using the latest stripe module and noticed CC data was now being auto tried, when i didn't want it to be so if you ONLY want your cart client to manually make payment via stripe and stop the system trying their saved card info see below that resolved it for me 1) first Create the file /includes/hooks/disableautocc.php and add this code replacing the admin username with your own: <?php function hook_disable_auto_cc($vars) { $command = "updateclient"; $adminuser = "admin"; $values["clientid"] = $vars['userid']; $values["disableautocc"] = true; $results = localAPI($command,$values,$adminuser); } add_hook("ClientAdd",1,"hook_disable_auto_cc"); ?> The above only stops it happening for any "NEW" client To stop it happening for any existing client you either have to go through in admin all their profile pages and tick to disable it, or do this that i found much easier on SQL goto your phpmyadmin and goto the database, click on SQL and use the command below Update tblclients set disableautocc = '1'; The above will tick the Disable Automatic CC Processing on all clients profiles you have on your WHMCS, untick it for any that want it to auto try payment but if you don't want it to auto attempt to take payment this i found very good. Hope it helps someone else Cheers
  8. on previous modules it was far cleaner, you had business entitiy name (single name) that appears on card and the item description (separate) now it mixes them both into the same field it doesn't look good so before i could have BUSINESSNAME MEMBERSHIP# 1234567 now it adds it all together and cuts the characters off so it shows as BUSINESSNAME MEM BERSHIP# 1234567 The 2 fields should be separate not merged into one for better clarity to customers i would think ?
  9. just wanted to say thank you for the above yes first add the php hook file and then simply open phpmyadmin and run this to disable it on all "existing" clients to disable it for them also, hope it helps someone else Update tblclients set disableautocc = '1';
×
×
  • 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