Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/28/2013 in all areas

  1. I have a blesta unbranded license for sale Looking to sell it at a price of 140$(only today ) .It's already verified by blesta staff.Serious buyers can contact me . Selling very cheap Bought it from Licensepal Very urgent .. I'll offer free installation though Price is slightly negotiable if paid today Thanks
    1 point
  2. eunger9

    Voip Billing?

    Anveo has a new Reseller platform API that could be "easily" integrated. Let me know what you think: http://www.anveo.com/business/features.asp?code=overview Edit: I'll probably use it with Blesta.. but manually create the accounts/phones in Anveo if there is no Blesta Module -- not a big inconvenience for our staff. (thanks to their built-in reseller tools)
    1 point
  3. solved by recomplier php with pdo Thanks guys
    1 point
  4. I added this method to Packages, so you can look for a package based on meta fields. It even includes some hackery to look up values in serialized data. /** * Searches packages that contain the given meta field * * @param string $key They service field key to search * @param string $value The service field value to search * @param string $subkey The key to look for in serialised meta * @return array An array of stdClass objects, each containing a service */ public function searchPackageMeta($key, $value, $subkey=null) { $module_id=1; $this->Record = $this->getPackages(); $qry = $this->Record->innerJoin("package_meta", "package_meta.package_id", "=", "packages.id", false)-> group("packages.id")-> where("package_meta.key", "=", $key)-> where("package_meta.value", "=", $value); if($subkey) { return $qry->orLike("package_meta.value", sprintf('%%s:%d:"%s";s:%d:"%s";%%', strlen($subkey), $subkey, strlen($value), $value))->fetchAll(); } else { return $qry->orLike("package_meta.value", sprintf('%%:%%:%%;s:%d:"%s";%%', strlen($value), $value))->fetchAll(); } } Example usage: find packages that include .com NameCheap domains. blesta.api('packages/searchPackageMeta', {'key': 'tlds', 'value': '.com'}) Find all SSL certificates blesta.api('packages/searchPackageMeta', {'key': 'type', 'value': 'ssl'}) Get all 33" washing machines blesta.api('packages/searchPackageMeta', {'key': 'dimensions', 'value': '33', 'subkey': 'diameter'})
    1 point
  5. You could remove non-required fields on the order form by editing the template and setting them to style="display:none;", but modifying them, depending on what you are trying to do may be an issue. Of course, if you disable the field from displaying, and then create a custom client field to replace it with your changes, that may work out.
    1 point
  6. This is sort of a continuation of the topic here: http://www.blesta.com/forums/index.php?/topic/917-dashboard-lost-widgets-and-more/page-1 But since it is a different issue that I brought up in the thread, I wanted to try to keep things cleaner in case anyone has this issue in the future. My dashboard's System Overview widget does not refresh at all. I don't have caching turned on in the server, it is the only site hosted there on a VPS hosted in a cloud based SSD server. I was using Cloudflare but have since moved from there and all DNS records are changed and cleared now so no caching even remotely there (As if the DNS would have cached content anyway -LOL ) I am using V. 3.0.3 and this has been there since 3.0.0.
    1 point
  7. Everything worked good up until this morning when I looged in to check an invoice in the admin end. My dashboard is now missing items: When I try to configure it, all .CSS is lost. Every area works otherwise including the client area. Any ideas as to what might have gone wrong?
    1 point
  8. bombeiro99

    Help Gatwwey Payament

    Hello I am a new user of the system Blesta Before using the system Blesta wore whmcs I decided to change However need your help to implement a payment gatwey I use payment by ATM company ifthen sofware Can find information on https://www.ifthensoftware.com/ProdutoX.aspx?ProdID=5 and may lower the payment modules already available in https://www.ifthensoftware.com/downloads/ifmb/Exemplos_Implementacao.zip Thanks for your help
    1 point
×
×
  • Create New...