Jump to content

laurens_dragicevic

Member
  • Posts

    32
  • Joined

  • Last visited

About laurens_dragicevic

laurens_dragicevic's Achievements

Member

Member (2/3)

0

Reputation

  1. I have a little webhosting company however i'm consurned because i don't want to oversell my server to clients( Want it so they get what they paid for ), is there a mod or is it possible to build where you can allocate allocate bandwidth and diskspace, so it automatic chooses a server which has enough capacity, it's better then having a account counter because some packages are bigger then the rest.
  2. It's not support That i Need but i need whmcs fixed, i've already configured whmcs before ibut that was an older version i have à trail account but thats to set it up when whmcs works correctly i Will buy THE subscription. Ps sorry if there are some words wrong editten i'm currently on ipod
  3. Wont be waste of time, they can make alerts when new messages is coming in, automatic refresh, hide as icon when needed you can just click the icon. Could make the speed of support much faster because i doubt your every minute clicking f5 on your keyboard....
  4. sended support ticket already earlier then ask stupid questions then they ignore me... glad i didn't buy whmcs yet, else i would've wasted money on waiting currently i'm on a 15 day trial. only sucks for the dedicated server which is basicly doing nothing only hosting my whmcs and webhosting pages. If this isnt resolved soon, i need to find an alternative way, but that sucks because i have a customized whmcs page and it will be wasted... so leaving is no option.
  5. I'm using version 4.3.1 but it seems like the automatic setup system is malfuntioning with directadmin, when using it manual it works great, but it does not automatic setup when paid.. which is one of the most important things in webhosting to get the account directly. Does anyone know where to download older version of whmcs? also is it possible to do that without losing 4.3.1 DATABASE?
  6. When using automatic setup it does not seem to work properly , "Automatically setup the product as soon as the first payment is received" Does not seem the work when paid it flags the product as paid but it does not use create using the module also status remains pending, "Automatically setup the product as soon as an order is placed" Works the correct way as it should be. Note: when using manual module command('Create') it works the correct way. I'm using version 4.3.1 Does anyone know how to solve this? it's pretty anoying because webhosting could be setup automatic. Thank you, ~ Laurens
  7. Thank you, but what happend when client tries to order a domain, with not enough prepaid money?
  8. Want to start a little hosting company soon, but how does enom work with prepaid, creditcard? and if it's possible to use prepaid which payment methods do you have at enom?
  9. how to credit the loged user example when the client made paiment on site.com/pay1.php he will bi redirect to page payed1.php that have this code Don't think its a smart idea to make something like this, why? everyone can connect to payed1.php to gain credits even when they have not paid for it, like i can see you don't have alot of knowledge of php to build a safe system. also why do you need to make something like that? you can use whmcs to buy credits. but it's possible to make a gift system out of it, which could be awsome just a note $_SESSION and $_COOKIE does not work outside domain so you cannot get the clientid, not sure if there is a way to get clientid through api
  10. don't think whmcs show percentages, probably they edited the template with another api which checks the uptime. although it would be an awsome addon.
  11. Agreed, but it will cost alot to make a cloud system, since it needs multiple servers. so the question is can you use the harddisk of the other solutions full capacity? or only on one server, it's payable when that is possible else, it's just a waste.
  12. it could be something like this <?php $url = "http://www.yourdomain.com/whmcs/includes/api.php"; # URL to WHMCS API file $username = "Admin"; # Admin username goes here $password = "demo"; # Admin password goes here $postfields["username"] = $username; $postfields["password"] = md5($password); $postfields["action"] = "addcredit"; $postfields["clientid"] = "2"; $postfields["description"] = "Adding funds via custom module"; $postfields["amount"] = "1.00"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 100); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields); $data = curl_exec($ch); curl_close($ch); $data = explode(";",$data); foreach ($data AS $temp) { $temp = explode("=",$temp); $results[$temp[0]] = $temp[1]; } if ($results["result"]=="success") { # Result was OK! echo "succeed"; } else { # An error occured echo "The following error occured: ".$results["message"]; } ?>
  13. probably this is what he ment but don't know the exact name of the clientid of the session but you could try this, $postfields["clientid"] = $_SESSION["clientid"]; or $postfields["clientid"] = $_COOKIE["clientid"]; oh also try this one $postfields["clientid"] = $_SESSION["uid"]; You could try both not sure if it works though
  14. Does anyone have a tutorial how to setup sub-domains? i've whmcs installed and made packages with .domain.com but that does not work it just wont make sub domains how is it even possible to make sub-domains? since whmcs does not have access to dns server of the domain.
×
×
  • 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