Jump to content

Michael

Moderators
  • Posts

    9,522
  • Joined

  • Last visited

  • Days Won

    186

Everything posted by Michael

  1. Michael

    Closes Invoice

    Is it on the billing widget Billing > Orders
  2. Do you mean the line items with 0 in the qty? haha that confused me but realised they don't total up so fine to work with but yeah if it's possible to limit to just the ones effected would be neat.
  3. Ah an invoice template haha woops, does that mean we can use it without quickbooks?
  4. Well we can on InterWorx just make a DNS record so you can put ns3.domain.com ns4.domain.com pointing to the IP and boom child nameservers. Want a domain to point to another IP, make the record and it works. That's how I did our VPN record no need to use Resellerclub to do it. And you can stop using capital letters please... All billing systems? Don't see any on Hostbill and then it would cost $99 extra. ClientExec, from the demo I can see you can set nameservers and park a domain to an ip, not sure why anyone would do that. And you can set-up the nameservers on Blesta... so what other system does?
  5. Nope if people can use the basics there's no need to say something is high priority Blesta does that based on how many people want and need it. Extras can come when they can do them. And I don't need to use capital letters (shouting) if I don't expect it back. And I'm not bashing anyone or saying they don't need or want it I see what people call the "Big picture"... Or maybe it's because I'm a Brit and like a bit of patience, or it's I know it's a lot of work for three people and they put it on a list. Or maybe it's people expect a lot from a small development team. Don't like what I say don't reply to me, and I won't reply back.
  6. So you want them to be able to set what? A records, child nameservers? that's not technically important as you can most of them on cPanel / InterWorx / Plesk / etc. Yes the module(s) need to be more advanced if the API supports it but how is that a HIGH PRIORITY?
  7. But you can sell cPanel accounts, you can sell SSLs with the two modules, you can sell domains... that's the core(s) as you say. The only issue is there's issues with renewing....
  8. Again if that's the case it would have more already because apparently "more people want it", you can't just come up with that fact without it happening, as the saying goes... Action is better than words, if you say something and no-one does it already then you just have words... For example, I could say we're bigger than LicensePal... That's words... The action (numbers) is we aren't and LicensePal is bigger customer wise and visitors, the numbers wouldn't match what I'm saying. Another one, when WHMCS has the big exploits, a lot of people said they was moving from them... what happened..? only a few moved others complained after the next update in a thread and some people used the saying "thought you was leaving them"... action speaks louder than words...
  9. Dno ask them I can't find it on the dev.blesta.com so it's probably private as it has private notes.
  10. I just installed it.
  11. Might just allow card payments then :s
  12. Have you applied the gateway to the order form?
  13. See: http://www.blesta.com/forums/index.php?/topic/4528-blestacsrf-bypass-for-domain-search-only/
  14. You have to options: If you want to sell just hosting use the "General" order form type. If you want to sell domains and hosting and the customer wants to skip they click "Order other products" and they skip that section and go to the packages.
  15. Already done: http://www.blesta.com/forums/index.php?/topic/3364-what-is-stopping-you-switching-to-blesta/ an old one but still.
  16. I've heard of coins.ph not sure on that market, but yeah crypto coins are getting more known peercoins is easy to do and you and I can do it.
  17. I know Blesta is making one. CORE-1349 mentions it.
  18. Not a big request or important but was thinking wouldn't it be cool to accept Peercoin with Blesta haha: http://peercoin.net/payment-integration-guide
  19. Don't worry mate in 3.5 it skips that CORE-1489
  20. I set-up my old installation and customers with two order forms one for domains only and one with hosting so they can skip or buy just domains.
  21. Weren't they making a module?
  22. I don't mind mate a list just makes life easier I'm hoping he means for example pulling them from the database and then using that in an array which is better than text.
  23. Not hash mate just british debates haha.
  24. Sorry mate looks like I did more editing than that (been so long since I did it), here's what I found in my thesslstore.php Find: $thesslstore_country = $fields->label(Language::_("TheSSLStore.service_field.thesslstore_country", true), "thesslstore_country"); $thesslstore_country->attach($fields->fieldText("thesslstore_country", $this->Html->ifSet($vars->thesslstore_country), array('id' => "thesslstore_country"))); $fields->setField($thesslstore_country); unset($thesslstore_country); Change with: // Old Country list code #$thesslstore_country = $fields->label(Language::_("TheSSLStore.service_field.thesslstore_country", true), "thesslstore_country"); #$thesslstore_country->attach($fields->fieldText("thesslstore_country", $this->Html->ifSet($vars->thesslstore_country), array('id' => "thesslstore_country"))); #$fields->setField($thesslstore_country); #unset($thesslstore_country); $thesslstore_country = $fields->label(Language::_("TheSSLStore.service_field.thesslstore_country", true), "thesslstore_country"); $thesslstore_country->attach($fields->fieldSelect("thesslstore_country", $this->getCountriesList(), $this->Html->ifSet($vars->thesslstore_country), array('id' => "thesslstore_country"))); $fields->setField($thesslstore_country); unset($thesslstore_country); Find: private function getWebserverTypes() { //Dumped from https://www.thesslstore.com/api/web-server-types //No API for this return array( Above it put: private function getCountriesList() { return array( "--" => "--- Please select your country ---", "AF" => "Afghanistan", "AL" => "Albania", "DZ" => "Algeria", "AS" => "American Samoa", "AD" => "Andorra", "AO" => "Angola", "AI" => "Anguilla", "AQ" => "Antarctica", "AG" => "Antigua and Barbuda", "AR" => "Argentina", "AM" => "Armenia", "AW" => "Aruba", "AU" => "Australia", "AT" => "Austria", "AZ" => "Azerbaijan", "BS" => "Bahamas", "BH" => "Bahrain", "BD" => "Bangladesh", "BB" => "Barbados", "BY" => "Belarus", "BE" => "Belgium", "BZ" => "Belize", "BJ" => "Benin", "BM" => "Bermuda", "BT" => "Bhutan", "BO" => "Bolivia", "BA" => "Bosnia and Herzegovina", "BW" => "Botswana", "BR" => "Brazil", "IO" => "British Indian Ocean Territory", "VG" => "British Virgin Islands", "BN" => "Brunei", "BG" => "Bulgaria", "BF" => "Burkina Faso", "MM" => "Burma (Myanmar)", "BI" => "Burundi", "KH" => "Cambodia", "CM" => "Cameroon", "CA" => "Canada", "CV" => "Cape Verde", "KY" => "Cayman Islands", "CF" => "Central African Republic", "TD" => "Chad", "CL" => "Chile", "CN" => "China", "CX" => "Christmas Island", "CC" => "Cocos (Keeling) Islands", "CO" => "Colombia", "KM" => "Comoros", "CK" => "Cook Islands", "CR" => "Costa Rica", "HR" => "Croatia", "CU" => "Cuba", "CY" => "Cyprus", "CZ" => "Czech Republic", "CD" => "Democratic Republic of the Congo", "DK" => "Denmark", "DJ" => "Djibouti", "DM" => "Dominica", "DO" => "Dominican Republic", "EC" => "Ecuador", "EG" => "Egypt", "SV" => "El Salvador", "GQ" => "Equatorial Guinea", "ER" => "Eritrea", "EE" => "Estonia", "ET" => "Ethiopia", "FK" => "Falkland Islands", "FO" => "Faroe Islands", "FJ" => "Fiji", "FI" => "Finland", "FR" => "France", "PF" => "French Polynesia", "GA" => "Gabon", "GM" => "Gambia", " " => "Gaza Strip", "GE" => "Georgia", "DE" => "Germany", "GH" => "Ghana", "GI" => "Gibraltar", "GR" => "Greece", "GL" => "Greenland", "GD" => "Grenada", "GU" => "Guam", "GT" => "Guatemala", "GN" => "Guinea", "GW" => "Guinea-Bissau", "GY" => "Guyana", "HT" => "Haiti", "VA" => "Holy See (Vatican City)", "HN" => "Honduras", "HK" => "Hong Kong", "HU" => "Hungary", "IS" => "Iceland", "IN" => "India", "ID" => "Indonesia", "IR" => "Iran", "IQ" => "Iraq", "IE" => "Ireland", "IM" => "Isle of Man", "IL" => "Israel", "IT" => "Italy", "CI" => "Ivory Coast", "JM" => "Jamaica", "JP" => "Japan", "JE" => "Jersey", "JO" => "Jordan", "KZ" => "Kazakhstan", "KE" => "Kenya", "KI" => "Kiribati", " " => "Kosovo", "KW" => "Kuwait", "KG" => "Kyrgyzstan", "LA" => "Laos", "LV" => "Latvia", "LB" => "Lebanon", "LS" => "Lesotho", "LR" => "Liberia", "LY" => "Libya", "LI" => "Liechtenstein", "LT" => "Lithuania", "LU" => "Luxembourg", "MO" => "Macau", "MK" => "Macedonia", "MG" => "Madagascar", "MW" => "Malawi", "MY" => "Malaysia", "MV" => "Maldives", "ML" => "Mali", "MT" => "Malta", "MH" => "Marshall Islands", "MR" => "Mauritania", "MU" => "Mauritius", "YT" => "Mayotte", "MX" => "Mexico", "FM" => "Micronesia", "MD" => "Moldova", "MC" => "Monaco", "MN" => "Mongolia", "ME" => "Montenegro", "MS" => "Montserrat", "MA" => "Morocco", "MZ" => "Mozambique", "NA" => "Namibia", "NR" => "Nauru", "NP" => "Nepal", "NL" => "Netherlands", "AN" => "Netherlands Antilles", "NC" => "New Caledonia", "NZ" => "New Zealand", "NI" => "Nicaragua", "NE" => "Niger", "NG" => "Nigeria", "NU" => "Niue", " " => "Norfolk Island", "KP" => "North Korea (Democratic People's Republic of Korea)", "MP" => "Northern Mariana Islands", "NO" => "Norway", "OM" => "Oman", "PK" => "Pakistan", "PW" => "Palau", "PA" => "Panama", "PG" => "Papua New Guinea", "PY" => "Paraguay", "PE" => "Peru", "PH" => "Philippines", "PN" => "Pitcairn Islands", "PL" => "Poland", "PT" => "Portugal", "PR" => "Puerto Rico", "QA" => "Qatar", "CG" => "Republic of the Congo", "RO" => "Romania", "RU" => "Russia", "RW" => "Rwanda", "BL" => "Saint Barthelemy", "SH" => "Saint Helena", "KN" => "Saint Kitts and Nevis", "LC" => "Saint Lucia", "MF" => "Saint Martin", "PM" => "Saint Pierre and Miquelon", "VC" => "Saint Vincent and the Grenadines", "WS" => "Samoa", "SM" => "San Marino", "ST" => "Sao Tome and Principe", "SA" => "Saudi Arabia", "SN" => "Senegal", "RS" => "Serbia", "SC" => "Seychelles", "SL" => "Sierra Leone", "SG" => "Singapore", "SK" => "Slovakia", "SI" => "Slovenia", "SB" => "Solomon Islands", "SO" => "Somalia", "ZA" => "South Africa", "KR" => "South Korea", "ES" => "Spain", "LK" => "Sri Lanka", "SD" => "Sudan", "SR" => "Suriname", "SJ" => "Svalbard", "SZ" => "Swaziland", "SE" => "Sweden", "CH" => "Switzerland", "SY" => "Syria", "TW" => "Taiwan", "TJ" => "Tajikistan", "TZ" => "Tanzania", "TH" => "Thailand", "TL" => "Timor-Leste", "TG" => "Togo", "TK" => "Tokelau", "TO" => "Tonga", "TT" => "Trinidad and Tobago", "TN" => "Tunisia", "TR" => "Turkey", "TM" => "Turkmenistan", "TC" => "Turks and Caicos Islands", "TV" => "Tuvalu", "UG" => "Uganda", "UA" => "Ukraine", "AE" => "United Arab Emirates", "GB" => "United Kingdom", "US" => "United States", "UY" => "Uruguay", "VI" => "US Virgin Islands", "UZ" => "Uzbekistan", "VU" => "Vanuatu", "VE" => "Venezuela", "VN" => "Vietnam", "WF" => "Wallis and Futuna", " " => "West Bank", "EH" => "Western Sahara", "YE" => "Yemen", "ZM" => "Zambia", "ZW" => "Zimbabwe" ); } There we go haha sorry again
×
×
  • Create New...