Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/22/2013 in all areas

  1. Cody

    Rasberry Pi?

    I'm thinking about turning my Pi into a sprinkler control system, and creating an interface to configure schedules over the internet, and possibly tie into weather monitoring service (NOAA) to automatically disable/reschedule during rain showers. It could be fun to play around with when used in conjunction with my video surveillance system.
    2 points
  2. Update to the import has been released. Get the latest version here.
    2 points
  3. Alternatively, you could have gone to [settings] -> [system] -> [staff] -> [staff Groups], clicked to edit your staff group, and re-saved the settings in order to clear the cache.
    2 points
  4. stormy

    Whmcs Migration

    Here's another vote. I think I will be buying Blesta even if it doesn't have all the modules I need right now, just to play with it and try to get it ready as soon as possible for my WHMCS migration.
    2 points
  5. Hello, I would like to request the following feature to be considered for future development within the Blesta build. GlobalSign SSL Partner Integration Currently I sell GlobalSign SSL certificates through the GlobalSign SSL Partner program via WHMCS. If Blesta we're to develop and integrate similar module for both GlobalSign's SSL and OneClickSSL program I would consider switching from WHMCS to Blesta, as would other providers that are part of GlobalSign SSL Partner program. To give you a better idea, I did some digging around on the GlobalSign website and found the following API guides; https://www.globalsign.com/partner-center/api-documentation-ssl.html Thank you.
    1 point
  6. Paul

    Pay For Features

    The documentation is coming together, albeit a little slower than we would like. All of the modules are open, and serve as excellent examples. If you take one apart, it should start to make pretty good sense. If you have any questions, we're available.
    1 point
  7. Paul

    Whmcs Import

    Cody updated the importer, you can get it here - http://www.blesta.com/forums/index.php?/topic/960-whmcs-migrator-beta-updated-2013-10-22/
    1 point
  8. Paul

    Whmcs Migration

    Cody updated the importer today, you can get it here - http://www.blesta.com/forums/index.php?/topic/960-whmcs-migrator-beta-updated-2013-10-22/
    1 point
  9. Sounds like this might be related to CORE-532 fixed in 3.0.3 (discussed here: http://www.blesta.com/forums/index.php?/topic/949-fao-tyson-domain-customer-id-field-and-yearly-bug/?p=8259). Can you post the details of the module log for the request? If this is indeed related to CORE-532, it's impossible for us to reproduce as the logicboxes API does not function the same in the dev environment as it does in the live environment, which is quite annoying. Added CORE-832 to investigate once we have the module log details.
    1 point
  10. tsiedsma

    Pay For Features

    I was referring to this: http://docs.blesta.com/display/dev/Modules And http://docs.blesta.com/display/user/Logicboxes
    1 point
  11. Paul

    Pay For Features

    We don't recommend it, and will not maintain it.. but if someone really needs something, it's an option. An option we are likely to decline, but we've done it before in a couple cases. We recommend sticking to extensions because it doesn't eliminate an upgrade path.
    1 point
  12. Paul

    Pay For Features

    We are available for sponsored and custom development, email sales and we can discuss. If it's an extension it's a lot easier than a change to a core feature. For sponsored development, we only implement changes that we want to add to the product but can't do yet due to heavy demand of other features. For everything else it's custom development where we would make the change or build the feature just for you, and not include it in a future release.
    1 point
  13. It depends where you want to place the value in the PDF, but consider this example which places it below the "Due Date" field: Update /components/invoice_templates/default_invoice/default_invoice_pdf.php (line 402): private function drawInvoiceInfo() { $data = array( array( 'name'=>Language::_("DefaultInvoice.invoice_id_code", true), 'space'=>null, 'value'=>$this->invoice->id_code ), array( 'name'=>Language::_("DefaultInvoice.client_id_code", true), 'space'=>null, 'value'=>$this->invoice->client->id_code ), array( 'name'=>Language::_("DefaultInvoice.date_billed", true), 'space'=>null, 'value'=>date($this->invoice->client->settings['date_format'], strtotime($this->invoice->date_billed)) ), array( 'name'=>Language::_("DefaultInvoice.date_due", true), 'space'=>null, 'value'=>date($this->invoice->client->settings['date_format'], strtotime($this->invoice->date_due)) ) ); to private function drawInvoiceInfo() { $cf_data = array(); if (property_exists($this->invoice->client, "id")) { Loader::loadModels($this, array("Clients")); $field_id = 6; $values = $this->Clients->getCustomFieldValues($this->invoice->client->id); foreach ($values as $value) { if ($value->id == $field_id) { $cf_data = array( 'name' => $value->name . ":", 'space' => null, 'value' => $value->value ); break; } } unset($values, $value); } $data = array( array( 'name'=>Language::_("DefaultInvoice.invoice_id_code", true), 'space'=>null, 'value'=>$this->invoice->id_code ), array( 'name'=>Language::_("DefaultInvoice.client_id_code", true), 'space'=>null, 'value'=>$this->invoice->client->id_code ), array( 'name'=>Language::_("DefaultInvoice.date_billed", true), 'space'=>null, 'value'=>date($this->invoice->client->settings['date_format'], strtotime($this->invoice->date_billed)) ), array( 'name'=>Language::_("DefaultInvoice.date_due", true), 'space'=>null, 'value'=>date($this->invoice->client->settings['date_format'], strtotime($this->invoice->date_due)) ) ); if (!empty($cf_data)) $data[] = $cf_data; You need to update line 407 to set the integer to the correct custom field ID for your custom field. For example, if you go to edit the custom field in Blesta, the integer value will you're looking for appears at the end of the URL. Note that this is a core file in Blesta, and future patches/updates from us may overwrite this file, and you will need to merge these changes with any subsequent update accordingly.
    1 point
  14. [Tools] -> [Clear Nav Cache], would be a much more obvious solution .../featurerequest
    1 point
  15. Great news, yeah Blesta only cache's the nav, so you've just re-cached it. Good to see your ready to roll mate .
    1 point
×
×
  • Create New...