Jump to content

zam

Retired Forum Member
  • Posts

    8
  • Joined

  • Last visited

Everything posted by zam

  1. Καλησπερα, το sql αρχειο που βρισκεται στο zip, οταν γινεται import βγαζει ? στα τονισμενα φωνηεντα, κατα το edit της σελιδας. Βλεποντας το αρχειο, το τονισμενο υ στη βαση ειναι : ύμ Μηπως υπαρχει καποιο προβλημα στο export του? Ευχαριστω,
  2. Hi, it would be helpful to see in whmcs the server-side product/service that the user uses on server. For example, a user needs for 10 days some extra features. I'll upgrade in cpanel the package (but not in whmcs, its just for few days) in order to meet the temp requirements. Then lets say i forget to change the package back and the user gets charged for package a, but cpanel package is b. Or another admin does a package change in cpanel for some testing and forgets to change it back. Is there a way when i see the product details below product/service a ,to see something like cpanel product/service : b ? Thank you in advance,
  3. Hi, in General Settings->Localization you must set the System Charset to iso-8859-7, even though the db is in utf8_general_ci. I cant remember if you have to re-enter the data in order to see it correctly.
  4. Ip.gr now offers a script for free, you can use it.. I didnt read the code but i believe that you can modify it as explained in my previous post to integrate it to whmcs. I still use my own script as i dont have the time to change it.. http://www.ip.gr/el/webmaster/whoisscript.php
  5. Hi, i have a question on a product. I 've inserted a new product and i want to sell it via resellers in 50% discount (200$/100$). Thats ok till now. I also want to add an addon (with or without licence) which costs lets say 100$/50$. I want to sell it via a reseller with 50% also. Here is the scheme : simple user : product 200$, if he choose the addon is +100, so 300$ reseller : product 100$, if he choose the addon is +50, so 150$ is there a way to do that? addons as i see have only one fixed price... thanks in advance,
  6. I see that there are spaces in url. So be sure that the : .gr|http://www.yourdomain.gr/where_wcmc_is/domain-check.php?sdomain=|HTTPREQUEST-NO MATCH is one line without spaces. If you wish, send me in priv your script url to make a query...
  7. Hi again. The idea is to as you where a browser, get the results, find a string, css or something in the view source that can tell you when its free or not free and send back to whmcs the string that needs. My registrar when a domain is not available has a class ( <b class="error"> ) in its page named error (doesn't exist when a domain is free).If you want to use another registrar you have to change some of the vars in the script. open includes/whoisservers.php and add at the first line : .gr|http://www.yourdomain.gr/where_wcmc_is/domain- check.php?sdomain=|HTTPREQUEST-NO MATCH This tells that wcmcs will use your php for gr checks. upload to your whmcs folder (http://www.yourdomain.gr/where_wcmc_is/) the file domain- check.php that contains : <?php $arr=explode(".",$sdomain); $domain=$arr[0]; $ext=".".$arr[1]; $webfile="http://www.ip.gr/el/main/whois.php"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$webfile); curl_setopt($ch, CURLOPT_FAILONERROR, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS,"domain=$domain&ext=$ext"); $result = curl_exec($ch); curl_close($ch); if (strstr($result,"<b class=\"error\">")) { echo "Domain Taken"; } else { echo "NO MATCH"; } ?> The script posts to the registrar form your data and checks for a match and returns it to whmcs.The problem is that if the registrar changes the page layout the script will not work. But at the end we are the only country without an open whois server. Anything that works is welcome
  8. Did you find a solution? I just wrote a simple program that acts like a whois server and can be intergrated to WHMCS... If you want it i can post it...
×
×
  • 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