Jump to content

Search the Community

Showing results for tags 'module'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • News
    • The Lounge
  • Community
    • Pre-Sales Questions
    • Support
    • The Marketplace
    • Contribute
    • Show Off
    • Feature Requests
    • Bugs
    • Contests
  • Developer Corner
    • General
    • Extensions
  • BlestaStore's Forum
  • BlestaStore's BlestaCMS
  • BlestaStore's Resellers
  • BlestaStore's BlestaForums
  • BlestaStore's Promotions
  • CubeData's Official Announcements From CubeData
  • CubeData's Peer Support
  • CubeData's Resellers
  • ModulesGarden Club's Topics
  • Blesta Addons's Topics

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Wire


Location


Interests

  1. We've been asked a few times since we've sold InterWorx if we can share the module, and since we aren't accepting new orders I feel it's only fair to offer others the chance to resell InterWorx with Blesta the most advanced way if they would like to. This will be a one time fee and we will fix bugs if there is any, but we've used it for 3 years without any issues. This comes with the plugin so you can manage licenses / buy new ones / re-sell un-used licenses to new customers. The license entitles you to use this module / plugin on how many sites you own, so no reselling allowed, the code is open and there are no licensing files / encoding so you can edit / modify whatever you like with no limits. Well minus the above. To purchase please visit the marketplace: https://marketplace.blesta.com/#/extensions/48 Price: $100.00 one-time fee.
  2. CubeData is proud to announce our Release of Our TCAdmin Provisioning Module Please read more on our website below for ordering/purchasing/getting a trial license: https://cubedata.net/tcadmin
  3. Hey all, Just wondering if there's a Right Wayâ„¢ to access the systemEncrypt/systemDecrypt methods from within a module (specifically, a forked version of the Plesk service module). I've hacked it in for now, but it feels dirty and though it works I was wondering if there's a better way. Current 'solution': /** * Wrapper around systemEncrypt function * * @param string $string The string to encrypt * @return string The encrypted version of input string */ protected function encryptString($string) { if (!isset($this->Clients)) Loader::loadModels($this, array("Clients")); return $this->Clients->systemEncrypt($string); } /** * Wrapper around systemDecrypt function * * @param string $string The string to decrypt * @return string The decrypted version of input string */ protected function decryptString($string) { if (!isset($this->Clients)) Loader::loadModels($this, array("Clients")); return $this->Clients->systemDecrypt($string); } I don't actually use the Clients model anywhere, just load it so that I can have access to the systemEncrypt/systemDecrypt methods that are attached. I suppose the real question would be is it possible to add a bonafide custom Model to a module, as I'm storing the encrypted values in a table the module is creating for itself during install/upgrade. ie public function upgrade($current_version) { if (version_compare($this->getVersion(), $current_version, ">")) { // Upgrade to v1.0.2 if (version_compare($current_version, "0.2.3", "<")) { $this->Record-> setField("id", array('type' => "int",'size' => 10,'unsigned' => true,'auto_increment' => true))-> setField("client_id", array('type' => "int", 'size' => 10))-> setField("encrypted_field", array('type' => "varchar", 'size' => 255))-> ... setKey(array("id"), "primary")-> ... create("my_custom_table"); } } } $some_data = $this->Record->select()->from("my_custom_table") ->where("client_id", "=", $service->client_id) ->fetch(); $some_data->encrypted_field = $this->decryptString($some_data->encrypted_field); Not sure how I could wrap this up and have $this->MyModel->foo(), but I assume if it's possible it'd extend some base model class which would give me the encryption methods 'For Free'.
  4. CubeData is happy to announce we have finally finished our CentovaCast provisioning module which can be purchased for the usual $7/month or $100/one time note this release is special because we have finally revamped our licensing system on blesta and in this module we have used our new revamped blesta licensing system in it instead of the other billing panel & licensing system we was using and we are working on moving all modules back to this new revamped system order link for trial: https://cubedata.net/order/config/index/cart/?group_id=1&pricing_id=49 Order link for Owned License: https://cubedata.net/order/config/index/cart/?group_id=1&pricing_id=50 Order link for Monthly License: https://cubedata.net/order/config/index/cart/?group_id=1&pricing_id=50 Note if anyone asks we will not do any code audits on our modules! ^ New in V1.0.3+ it supports clientarea functions!
  5. Hello there, I want to change cPanel Extended module to cPanel default one of all my clients. Can anyone tell me how i do that? Thank you!
  6. Hello everyone! We are thrilled to bits to announce that our offer is growing again! An absolutely fresh product has been released, thereby opening a whole new spectrum of advantages for Blesta users. OpenStack VPS For Blesta has been designed to yield a wealth of ease to the provisioning and management of virtual servers. You will be allowed the possibility to control all server aspects in a strict manner. At the same time, your customers will be able to order VPS products tailored finely to their needs and manage them right inside your Blesta accordingly. They will be able to monitor server details, access noVNC console, manage backups, control the list of planned tasks - we could go on and on with the lead-in but there are simply too many magnificent possibilities this new module rises. Visit our website, download a free trial version and let the product speaks for itself! We encourage you most warmly to visit our website and find out all about OpenStack VPS For Blesta! Need Custom Software Development For Your Business? Get Your Free Quote Now! Specially for you we will adapt an application and its design to your own needs, create a new module or even a completely new system built from scratch!
  7. Today we want to offer our official Blesta Development services in the forum, We offer a professional, and customized service, with a lot of happy clients in the forum! If you are a recurring/previous client of our services, you can get a special price! ------------------------------------------------------------------ ★ Our Services ------------------------------------------------------------------ ★★★ Theme Integration ★★★ We can convert and integrate and customize your actual theme or template to a Blesta Theme. Starting From: $49.99 ★★★ Theme Design ★★★ We can make a unique, professional and modern design, for your Blesta site. Starting From: $99.99 ★★★ Blesta Development ★★★ We can make anything that you want, From a simple module, a beautiful theme, through a complex plugin for all kinds of tasks that you want. Starting From (Modules): $99.99 Starting From (Extended Modules): $199.99 Starting From (Plugins): $199.99 Get a free quote, Talk with us! Open a ticket now! ------------------------------------------------------------------ ★ Payment Methods ------------------------------------------------------------------ Credit and Debit Card (Visa, MasterCard, American Express, Discover, JCB) (Processed by 2CheckOut) PayPal Bitcoins (Processed by BitPay) Please, If I posted the thread in the wrong section, please move to the correct section and sorry.
  8. Hi, i found modulesbakery's digitalocean module for blesta in github tried to install the module, it could connect to digitalocean api, could get my ssh keys (as global ssh keys) and get droplets size (ram size, but only 512MB, 1GB and 2GB) tried to make dummy order, i could create order and saved to blesta database but it couldn't create real droplets in digitalocean, even couldn't store user's ssh key i know modulesbakery had stopped the development of this module, but does this module still compatible with latest blesta version? if need some modification, anyone can tell me which part i have to modify? thanks a lot
  9. Hello, I have problem with module multicraft , look that : Thanks,
  10. NETLINK

    Class Emailgroups

    Hey! Is the EmailGroups::add( array $vars ) method not supported for modules? One of the vars is: "plugin_dir The directory where the plugin resides that is associated with this email group (optional)" I'm guessing that's where it loads the language file from? I was able to create an email template from a module, but the template name and description are blank in Settings->Emails->Email Templates /admin/settings/company/emails/templates/
  11. Hi, We are specialized in web application development, and we have an extensive experience in Blesta Billing Software. Our Services & Pricing: - Custom Development For Blesta - Request a Quote - Blesta Migration Services - Request a Quote - Blesta Theme Integration - Starting at $29 USD, Order Now Testimonials: Payment Methods We accept (Visa & MasterCard Credit & Debit Cards, American Express, Discover, Diners, JCB & Paypal), Money Order & International Bank Transfer for larger payments. Have any questions ? Please do not hesitate to submit a quote request and we will get back to you with a quote in 24 business hours. Thanks for reading!
  12. Hello On module tab navigation, how to set up error messages on the fly? Exemple: We have the opensrs module, wen there is an error conecting or getting any data, for exemple we want to display the error message and it dosent display wen navigating on the TABS On the outher hand we have sucessful add the error message wen POST the form like so: $errors[] = "my error message"; $this->Input->setErrors(array('errors' => $errors)); but dont work wen loading TABS only POST/Modifying the module options Thanks in advance for any help
  13. Hi, I am sorry to open this as a bug request, but imho, this may become a security bug, if the person who configure the universal module don't want to configure the email notification, or just want to configure the notifications at a later time. In /components/modules/universal_module/universal_module.php i see those lines : if (!isset($vars['package_email_html'])) $vars['package_email_html'] = "{% debug %}"; if (!isset($vars['package_email_text'])) $vars['package_email_text'] = "{% debug %}"; if (!isset($vars['service_email_html'])) $vars['service_email_html'] = "{% debug %}"; if (!isset($vars['service_email_text'])) $vars['service_email_text'] = "{% debug %}"; As a result, if you forget to add your own tags, then it may send emails with the server SSL key, as well as the Blesta encryption key. The email is also stored in the Blesta logs, and i am not sure this is the correct place to store this kind of stuff. I would strongly recommend to add a feature in the config files to disable this tag, or at least to comment those lines, and give us the choice to enable this or not! Or maybe someone can explain why it's there and what's the exact purpose of this, because the debug logs sent by this tag do not seems to include anything that can help to diagnose template issue! This tag seems dangerous. Thank you for taking this into consideration! Cheers! Carl
  14. Hey all, Im in need of a new module making so that i can sell domains via blesta with my webhost. Unfortunately they are using whmcs and have only developed a module for that and after waiting a while for them to develop something they have kinda turned round and said sorry we are too busy at the moment to put enough resources into this They have an api and details on how the structure works with their system. I have api access but php really isnt my strong point, you can see my other post about this here http://www.blesta.com/forums/index.php?/topic/4376-connecting-blesta-to-whmcs-via-api/ So im wondering what the price would be for a module Cheers
  15. Hi guys, DigitalOcean would be a better alternative to VPS.net for a lot of us. They have an API so this would be a great module: https://developers.digitalocean.com/
×
×
  • Create New...