Jump to content

prooi

Retired Forum Member
  • Posts

    28
  • Joined

  • Last visited

Everything posted by prooi

  1. Hello. I get some really weird support tickets that looks like this: I looked in the templates folders, and no file named jxh.php shows up, so seems like the hacking attempt fails. The tickets were created from a saudi-arabian IP adress, which I want to ban - [b]is there such function in WHMCS?[/b] Lastly, I would like to know if there is something I can do? Or something I should be aware of? Kind Regards, Frederik
  2. Well, I would say CentOS for servers and Ubuntu for desktops.. But thats just my opinion
  3. Nevermind, i fixed it. It was due to not having any customers in the group named customers, so I created a hook to do it If anyone wants the hook, here it is: <?php function add_user_to_group($vars) { mysql_query("UPDATE tblclients SET groupid = 2 WHERE id = ". $vars['userid'] .""); } add_hook("ClientAdd",1,"add_user_to_group"); ?> This of course needs your default group to have the id 2.
  4. Cool. Thanks for the quick responses.
  5. Okay, so the connect part could be removed. So this script would do it? <?php function add_user_to_group($vars) { mysql_query("UPDATE tblclients SET groupid = 2 WHERE id = ". $vars['id'] .""); } add_hook("ClientAdd",1,"add_user_to_group"); ?>
  6. Hello guys. I would like some feedback on my hook script, to see if it looks just a bit right. So here goes: <?php $con = mysql_connect("localhost","username","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("databasename", $con); function add_user_to_group($vars) { mysql_query("UPDATE tblclients SET groupid = 2 WHERE id = ". $vars['id'] .""); } add_hook("ClientAdd",1,"add_user_to_group"); mysql_close($con); ?> What I would like this script to do, is to add all new clients to a specific usergroup. Regards, Frederik Nielsen
  7. I have the same issue as the first poster with my Mass-Mailer. Here is what I pick: Email type: General Client group: Customer Language: Default,Danish,English Client Status: Active,Inactive,Closed And the error: No Recipients The criteria selected for this email has resulted in no recipients which means it cannot be sent arises. How to fix this?
  8. 03/04/2011 00:00 Cron Job: Running Usage Stats Update So that looks correct too..
  9. That "Update Usage Statistics" is checked, and my server details should be correct.. Accounts are getting created as they should, so the server details should be allright.
  10. Hello. I have a problem that my hosting accounts do not update any usage in WHMCS.. What is going on? Anyone got a solution for it? Regards,
  11. Hello. I am wondering why, when ordering a VPS setup on a HyperVM server, I am told to insert some nameserver prefixes.. What are these for? It doesnt really matter what is put inside them, as it works anyways.. And it is just confusing for our clients when ordering.. So, is there any good reason why they are there? Can they be removed? Regards,
  12. Hello. Is it possible to force the client to order a product along with the domain, and not just the domain alone? We want to do this, as we do not offer any possibilities for our customers to control their DNS records, so if they only order a domain, it will practically be useless. Regards.
  13. othellotech: Im pretty sure somebody out there got the answer - but just not saw this thread, therefore the bump. Well, the code I am looking for is already inside WHMCS, and personally I dont think it would be that bad for the team to provide that little snippet of code to the public, as it would be a nice feature for everyone.
  14. Nobody got any ideas at all? I think that the coding team must have an idea, as it has been coded inside WHMCS
  15. Hello. I am trying a way to insert a domain checker at my home page, and it works as expected. Now, I just dont just want a domain checker that redirects me to WHMCS upon the check, but I want it to display the results just below the box with some kind of AJAX or stuff - just like it does in WHMCS when using the singlepage cart (i think) So, is there a way to integrate that kind of check into my existing site?
  16. well, the code must also go with through the automatic registration process - so I dont think that would work. And its not going to be for all domains - just the ones that end up on .com
  17. Alright, I seem to have it figured out; Just had to add it in the domain pricing.. But now, How can I force the user to insert the EPP code if the customer wants to transfer a .com domain?
  18. Hello . I am working with my domain reseller-host to create a module that allows automatic registering with email. But we now ran into a little problem; We are allowing the registering of .com domains, but they need an EPP/Auth code to be moved - but this one is not to be inserted during the buy process. So, how do we figure this out? I really hope some of you guys got an idea
  19. I actually figured out everything! It was just because of a missing dot in the domain price list. And actually, I am the server admin ;-)
×
×
  • 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