Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/15/2015 in all areas

  1. Paul

    Centova Cast V3 Integration

    I've opened a ticket with Centova to see if they would be interested in building a module themselves. I would encourage you to reach out to them if you'd like to see them build a module for Blesta.
    2 points
  2. Paul

    Centova Cast V3 Integration

    Centova responded, they'd like to see more support at http://forums.centova.com/index.php?topic=3340.0 so if you'd like to see them implement a module for Blesta, please go there and vote it up.
    1 point
  3. This will get you more info for context, or you can remove the fields just for the email addresses: SELECT `contacts`.`client_id`, `contacts`.`id` AS `contact_id`, `contacts`.`first_name`, `contacts`.`last_name`, `contacts`.`email`, `services`.`status`, `services`.`date_canceled`, COUNT(`services`.`id`) AS `number_of_services` FROM `contacts` INNER JOIN `services` ON `services`.`client_id` = `contacts`.`client_id` WHERE `services`.`status` = 'active' AND `services`.`package_group_id` = '1' GROUP BY `contacts`.`id` ORDER BY `contacts`.`client_id`, `contacts`.`id`
    1 point
  4. Sharing is caring, folks! select distinct email from contacts where client_id in (select client_id from services where package_group_id='n' and status='active'); Where n is your package group # of service XY. I think it would be even better to also get status "cancelled" and check if the date is in the future.
    1 point
  5. The div's look fine--just one too many. Delete the "</div>" from line 26 and it will probably be back to normal.
    1 point
  6. I don't see anything wrong with the markup you pasted in, if they have a col-md-4, it should be able to fit 3 of them across the page. There may be something else causing trouble. If you want to link to the page, we may be able to identify it. If you buy a license, it will not modify anything. You just update your license key under Settings > System > General > License Key. All settings and files will remain unchanged.
    1 point
  7. Cody

    Code Assistance

    I think by module you mean plugin, right? You can load the models of a plugin directly, and then use them in your plugin, like so: from a controller: $this->uses(array('PluginName.PluginModelName')); $this->PluginModelName->modelMethod(); from a model: Loader::loadModels($this, array('PluginName.PluginModelName')); $this->PluginModelName->modelMethod();
    1 point
  8. We appreciate your feedback, we are working to improve usability and make tasks more intuitive.
    1 point
  9. What version of Blesta are you using? The error you received shouldn't have occurred, but may have been possible in much older versions. A module in Blesta represents the product/service you are selling. Most modules perform remote actions, so configuring the module may require you to specify account credentials so that API requests can be made with the module. If you do not intend to make use of any of the existing modules (e.g. cPanel), then you might be able to create a product using the Universal Module. A package represents your configuration of a product. You would select which module you want the package to use, any other module settings, and configure pricing. A service represents an instance of the package that a client purchases, which is a specifically-configured product/service based on the module. So you would start by determining what you're selling (i.e. the module). Then configure the product and its pricing (i.e. the package). You can then create an order form that uses the package so that customers can order them from your website. As LicenseCart mentioned, if you're experiencing that error on the order form, you might want to try changing the order form's template to Standard or Wizard instead of AJAX.
    1 point
  10. I figured it out... /var/www/blesta/app/controllers/client_services.php in the method: review I added $this->set("client", $this->client); and now it works.
    1 point
  11. NETLINK

    Namesilo Plugin

    Hello, I've started this project here: https://github.com/NETLINK/Blesta-Namesilo Still a fair bit of work left, and any help would be appreciated. For testing purposes, an already registered domain in a Namesilo account can be added through the admin backend and then managed from the client section. Nameserver and Whois management, registrar lock and EPP functions should be working, however, improvements are still possible.
    1 point
×
×
  • Create New...