Jump to content

mgaccess

Retired Forum Member
  • Posts

    37
  • Joined

  • Last visited

About mgaccess

mgaccess's Achievements

Member

Member (2/3)

0

Reputation

  1. @Alex, none yet. I am going to evaluate Opencart.
  2. Thank you for the replies guys (sorry for the delay in responding). @Alex, you are correct, I am starting from scratch and do not currently have a WHMCS systems. If I did, @Kian would have valid points for sure. I actually forgot about the tracking number aspect - good point
  3. Hi, it has been a couple of years since I've used WHMCS. I had a service oriented business (online backup) that I have since sold and WHMCS was awesome for that! I am going to start selling a few physical products online (and with that comes shipping, returns, etc), and was wondering if WHMCS is still a good choice? I heard some things about OpenCart but I am not familiar with it. I just remember I enjoyed the feature rich and flexible aspects WHMCS. Any thoughts, or anyone doing this? Thank You. ~Mike
  4. Looks like the main site has been hacked by ugnazi hacker group. I am still seeing license errors on my side and can't log in. Ugh
  5. Seems that way. I can't log in to my admin panel either - getting license errors.
  6. Any ETA when it will be back up? I am getting license errors and also can't log in to the client area on WHMCS.com
  7. I was including the client area details in each product related email which is why I had it disabled, but I guess I will separate them again until I find a workaround. Thank you guys for your replies.
  8. I have the "Client Signup Email" disabled because I don't want it sent out when a new customer orders a product ... because they already receive and order confirmation email AND a product related email. No need for 3rd email to be sent. I only want it sent when a non-customer registers for "more information". Hard to believe there is not a way to do this - {sigh}
  9. Right, but that is assuming an email is even sent. When someone registers with no product purchase, there are no emails sent to anyone that I can see.
  10. Hi, I want to use the WHMCS registration form (register.php) for my contact form but it doesn't send an email or alert me when someone registers. Is there some way to enable notification when a non-customer registers without ordering a product? Thank you.
  11. I finally got this working correctly on my test servers - I like it. What if I did NOT want to actually delete the account from the server after 45 days (or whatever)? It is fine to still send the "terminate" email and go through the motions, but I want to manually delete trial accounts from the server. Anyone know what part to edit? Should I just comment out the &sql and $rs statements below? if ($regdate == $terminatedays) { sendMessage("$terminate",$id); $sql = "insert into tblcancelrequests (date,relid,reason,type) VALUES (now(),".$id.",'Trial Account','Immediate')"; $rs = mysql_query($sql); }elseif ($regdate == $suspenddays) { sendMessage("$suspend",$id); ServerSuspendAccount($id); Also, does this mod only affect accounts that are "Active" or "Suspended"? Thanks
  12. Okay thanks. Well, not sure why it's not working on my test server when I run the job manually or via the cron job. The original code works fine, but just continuously sends emails everyday which renders it useless. Ugh, back to the drawing board. Thanks for your help so far.
  13. Sorry I don't quite understand what you are trying to say. Did you modify the file attached to my previous message? The link only shows text. (I'm certainly not a programmer by the way - just enough to be dangerous). What are you suggesting? Thanks
  14. @jeremyhaber I updated the code as you suggested (attached), but the cron job doesn't send any emails at all. I've edited the product registration dates several times just to be sure. Any suggestions? (note the "warndaysX" 2, 4, 6 is just for testing) end_free_trials_hook.txt
  15. @jeremyhaber, I assume this was a typo ($withinTime[3] <= 86400 && $withinTime[2] )? }elseif ($withinTime[2] <= 86400 && $withinTime[2] > 0) { sendMessage("$warn3",$id); }elseif ($withinTime[3] <= 86400 && $withinTime[2] > 0) { sendMessage("$warn2",$id); }elseif ($withinTime[4] <= 86400 && $withinTime[3] > 0) { sendMessage("$warn1",$id); } and should be changed to this: }elseif ($withinTime[2] <= 86400 && $withinTime[2] > 0) { sendMessage("$warn3",$id); }elseif ($withinTime[3] <= 86400 && $withinTime[3] > 0) { sendMessage("$warn2",$id); }elseif ($withinTime[4] <= 86400 && $withinTime[4] > 0) { sendMessage("$warn1",$id);
×
×
  • 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