Jump to content

Michael

Moderators
  • Posts

    9,521
  • Joined

  • Last visited

  • Days Won

    185

Reputation Activity

  1. Like
    Michael got a reaction from Tyson in Fresh installation with Ubuntu 18.04 doesn't work   
    You haven't applied the hot-fix it tells you there:
    was encoded by the ionCube Encoder for PHP 5.4 and cannot run under PHP 7.1 or later. So you need the hotfix71. Copy the files from /hotfix71/blesta/ to the root of blesta.
  2. Like
    Michael reacted to Tyson in cPanel Module not updating passwords   
    cPanel (and essentially all other systems) will not send notifications to services (like Blesta) regarding a password update made through their system.
    If the cPanel password needs to be changed, then the user should:
    Change it from within Blesta, or Update it in Blesta after having changed it in cPanel
  3. Thanks
    Michael reacted to Tyson in Support manager API   
    There are two separate calls you need to make:
    Create a ticket (as @Jono mentioned above) Create a reply for the ticket (as you did in your OP). FYI the first question from a customer that opens the ticket represents the first reply
  4. Like
    Michael reacted to SteveR in Email doing weird   
    I fully removed the Installatron installed version and it's database then manually installed the latest v4.4.2. This solved the issue for me, I can now edit email templates! Thanks
  5. Like
    Michael got a reaction from Paul in Support manager API   
    Thank you Jonathan mate
  6. Like
    Michael reacted to Tyson in How to Disable CSRF Protection   
    Yes, you can disable it similar to what is shown above in the configuration file using the plugin controller and method. But since it's in your plugin, you can always disable it from the source by calling Form::setCsrfOptions prior to Form::create, e.g.:
    $this->Form->setCsrfOptions(['set_on_create' => false]); $this->Form->create();  
  7. Like
    Michael reacted to Blesta Addons in [Module] Hetzner Cloud   
    we have found the issue updating files will be done after we test the full actions in blesta 4.4.0 .
  8. Like
    Michael reacted to Blesta Addons in [Module] Hetzner Cloud   
    Sir please wait, this is a forum not a chat box !!!!
  9. Like
    Michael reacted to Paul in Blesta 4.5 Beta 2 Released   
    Blesta version 4.5.0-b2 (BETA 2) is now available. You can download it from right here (Client Area Login Required). Read the blog post announcement at https://www.blesta.com/2019/01/31/blesta-4.5-beta-released/
    This is a BETA release. Beta releases are not considered stable enough for production use, and are UNSUPPORTED. DO NOT INSTALL IN A PRODUCTION ENVIRONMENT.
    Please report any bugs you find in the v4.5 beta bug forum.
    Installing Blesta

    See Installing Blesta in the User Manual for instructions.

    Upgrading Blesta

    See Upgrading Blesta in the User Manual for instructions.

    Release Notes

    See Blesta Core - Version 4.5.0-b2.

    For older releases see all Change Logs.
  10. Thanks
    Michael reacted to Jono in Support manager API   
    Well I kinds depends.  If you are looking to do it through the API then you should first call SupportManagerTickets::add() like this
    $ticket_data = [ 'vars' => [ 'department_id' => 1, 'staff_id' => 1, // This field is optional 'service_id' => 1, // This field is optional 'client_id' => 1, // This field is optional 'email' => 'firsttes@mailinator.com', // This field is optional 'summary' => 'Something is terribly wrong', 'priority' => 'critical', 'status' => 'open' ] ] $ticket = $api->post("support_manager.support_manager_tickets", "add", $ticket_data); On the other hand, if you are within Blesta you should be able to use the loader to access the model even though it's from a plugin.  In a controller that would look like this
    $ticket_data = [ 'department_id' => 1, 'staff_id' => 1, // This field is optional 'service_id' => 1, // This field is optional 'client_id' => 1, // This field is optional 'email' => 'firsttes@mailinator.com', // This field is optional 'summary' => 'Something is terribly wrong', 'priority' => 'critical', 'status' => 'open' ]; $this->uses(['SupportManager.SupportManagerTickets']); $ticket = $this->SupportManagerTickets->add($ticket_data);
  11. Like
    Michael reacted to Blesta Addons in Hetzner Cloud Module Comming Soon ...   
    Module Released
     
  12. Thanks
    Michael reacted to Blesta Addons in [Module] Hetzner Cloud   
    we are proud to announce the release of our new module Hetzner Cloud Server, the module will allow you to resell hetzner cloud services with white label.
    Features
    Instant Activation of Cloud Server Automatic Suspension Automatic Unsuspension  Automatic Termination Unlimited Hetzner Projects Client Side
    Reboot/Boot/Shutdown Change Hostname Change Root Password Reinstall Show Available IP address Admin Side
    Reboot/Boot/Shutdown Change Hostname Change Root Password Reinstall Suspend/Unsuspend Cancel Create/Add Server Show Available IP address TODO List
    Add/Remove Volumes (config Options) Add/Remove IPV4/IPV6 (config Options) Add/Remove Cpanel/Softacoulus License (config Options) Allow/Disalow Client To Use Backup Add Snapshot Feature  
    ANY Suggestion , FeedBack , Bugs , Please Post it inthis thread .
    this Module require a the Vip (GOLD) subscription .
    Order Link
     
  13. Thanks
    Michael got a reaction from activa in BlestaForums Beta 1   
    We're almost ready for the Beta 1 of the BlestaForums. Myself and Timothy (our collaboration together) are testing everything to try and keep bugs to a minimum. We're testing everything and when it's ready for Beta 1, we will update everyone here. We will be having a trial for 14 days to try it and then you can purchase a license from either Blesta.Store or CubeData. Each has their own licensing system. We've agreed on doing what I did with the BlestaCMS in the beginning and that will be that it will be open-code minus the bits for licensing.
    We will be adding features as we go along and I'm looking into a way to integrate this forum plugin into the CMS so it can be a paid addon or free if you have the forums and the cms.
    You can view my forums alpha version if you're a customer of ours: https://blesta.store/client/plugin/blesta_forums/
    Please note if you find a bug please let us know here and I'll get us onto it to fix it.
  14. Haha
    Michael got a reaction from huangsenli in BlestaForums Beta 1   
    We're almost ready for the Beta 1 of the BlestaForums. Myself and Timothy (our collaboration together) are testing everything to try and keep bugs to a minimum. We're testing everything and when it's ready for Beta 1, we will update everyone here. We will be having a trial for 14 days to try it and then you can purchase a license from either Blesta.Store or CubeData. Each has their own licensing system. We've agreed on doing what I did with the BlestaCMS in the beginning and that will be that it will be open-code minus the bits for licensing.
    We will be adding features as we go along and I'm looking into a way to integrate this forum plugin into the CMS so it can be a paid addon or free if you have the forums and the cms.
    You can view my forums alpha version if you're a customer of ours: https://blesta.store/client/plugin/blesta_forums/
    Please note if you find a bug please let us know here and I'll get us onto it to fix it.
  15. Thanks
    Michael reacted to Paul in BlestaForums Beta 1   
  16. Thanks
    Michael got a reaction from Blesta Addons in BlestaForums Beta 1   
    We're almost ready for the Beta 1 of the BlestaForums. Myself and Timothy (our collaboration together) are testing everything to try and keep bugs to a minimum. We're testing everything and when it's ready for Beta 1, we will update everyone here. We will be having a trial for 14 days to try it and then you can purchase a license from either Blesta.Store or CubeData. Each has their own licensing system. We've agreed on doing what I did with the BlestaCMS in the beginning and that will be that it will be open-code minus the bits for licensing.
    We will be adding features as we go along and I'm looking into a way to integrate this forum plugin into the CMS so it can be a paid addon or free if you have the forums and the cms.
    You can view my forums alpha version if you're a customer of ours: https://blesta.store/client/plugin/blesta_forums/
    Please note if you find a bug please let us know here and I'll get us onto it to fix it.
  17. Like
    Michael reacted to Paul in Questions from potential customer   
    There are no known issues with PagSeguro. Because many gateways are cross border, I'm not sure if there are any others specifically for Brazil, but we may be creating one or more new gateways for Brazil soon including Widepay.
    I'm not familiar with boleto bancario. You can see a list of gateways at https://docs.blesta.com/display/user/Gateways
    If a customer does not pay, their services they have with you can be suspended, but it does not currently have any impact on whether the client can open tickets. Your support staff can check the status of their account, and ask them to bring it current in order to provide support. Or, a customization could be made to disable it if they are behind.
  18. Like
    Michael reacted to JNdev in Lutfi Cloud - Blesta Client Template & Hosting Template   
    Hello,

    I'm sorry because there no update for a long time, for now I have fixed the order form, and will make an update for the main template soon
     
    Please re-download from download page with your account.
  19. Thanks
    Michael reacted to Gigaion in [How To Guide] AJAX Boxes Order Form - Configurable Options Direct Link   
    Hello Blesta Community,

    Here's a quick snippet of being able to link directly to configurable options within the AJAX Boxes order forms template:

    Example Link:
    example.com/order/main/packages/EXAMPLE/?..etc-data...&group_id=[Your Group ID]&configoptions[1]=[Option Value 1]&configoptions[2]=[Option Value 2]

    Edit File: /plugins/order/views/templates/ajax/main_packages.pdt

    Add the following code after the "// Process change currency request" portion of the javascript code:
     
    // GET URL Variables as associative array function getURLVars() { var vars = [], hash; var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for(var i = 0; i < hashes.length; i++) { hash = hashes[i].split('='); vars.push(hash[0]); vars[hash[0]] = hash[1]; } return vars; } //Change Config Options in URL: &configoptions[1]=VALUE&configoptions[2]=VALUE...etc $(document).ready(function() { setTimeout(function(){ configCount = 0; while (configCount < 10) { var ConfigVar = getURLVars()["configoptions[" + configCount + "]"]; if(ConfigVar) { $("#configoption_" + configCount).val(ConfigVar).change(); } configCount++; } }, 5000); //Secondary call after 10s //This helps resolve issues with coupon codes. Prices would show up correct, but drop downs would show incorrect setTimeout(function(){ configCount = 0; while (configCount < 10) { var ConfigVar = getURLVars()["configoptions[" + configCount + "]"]; if(ConfigVar) { $("#configoption_" + configCount).val(ConfigVar).change(); } configCount++; } }, 10000); }); Edit the "configCount < 10" based on how many variables your site requires.

    Please note there is a 5 second delay where it updates the configurable options.
    I'm aware there is probably a better method to do this and I'd love to see the community improve upon this idea by sharing below

    (Note: It does seem AJAX Boxes order form does have an issue where you login/create account it blanks out the config options)
  20. Like
    Michael reacted to Tyson in disable plugin, disanle thier crons   
    Are you referring to the plugin's cron tasks being active, or the plugin's cron task being run?
    Blesta doesn't run plugin cron tasks if the plugin is disabled. I think this has been the case since at least v4.3.
  21. Thanks
    Michael reacted to zomex in Glaze Blesta Template | HTML Template With Blesta Integration | Settings File | HTML Snippets | Ready-Made   
    Glaze

    Glaze is a fully responsive HTML Template with optional Blesta Integration and comes with many features and includes free support.
    Price: $69.99 - Optional $30/year for Blesta integration.
    Learn More | View Demo | Order Now
    ^ Please view the links above to learn more. Glaze is only one of our many Blesta Templates.
     
    Save $20 On Glaze!
    Use coupon code blestaforum during checkout for a huge $20 discount on our Glaze Blesta Template!
     
    Glaze Features
    - Responsive - Glaze is a responsive Blesta Template meaning it will support any device used to view it. For example if your visitor uses a desktop computer they will see the full-size version of the Glaze. If they view it with a mobile device the template will automatically "respond" to the size of that device allowing your website to support all devices.
    - Blesta Integration Template ($30/year) - Glaze comes with an optional Blesta Integration Template. So your main website will utilise the Glaze and you can use Blesta to add functionality such as client accounts, cart, tickets, automation & more to your website. Our easy 5 minute integration process will show you how to add your HTML Templates header/footer/images/CSS to the Blesta integration template. The process will create a pixel perfect match between your Glaze & Blesta pages.
    - 4 Plan Design Layouts - This Blesta Template comes with 4 design options to display your plans using easy to use HTML. Included layouts are multiple pricing tables, data tables, feature boxes & slider.
    - 3 Menu Design Options - This Blesta Template supports 3 menu design options that are changed within the HTML markup. Options include a mega menu, single dropdown or no dropdown.
    - Ready Made Sales Pages - Ready-Made sales pages to display your products/services. All pages have exclusive out of the box content and support multi-display options. Built with HTML they can be edited easily.
    - PHP Structure - Glaze uses PHP includes allowing you to update consistent parts of the template (such as the menu, footer, head etc) in one file. Changes made to the include files are automatically updated within the HTML pages.
    - HTML Snippets - Glaze is a Blesta Template packed with a range of copy/paste HTML code snippets which you can use to easily create pricing tables, feature boxes, buttons & more.
    - Unlimited Customization - This template is built using HTML so you have unlimited possibilities for customization (with HTML experience). Create new pages, edit the menu, implement ready-made HTML Snippets to generate content & more.
    And much more >> View All Features
     
    How Does The Blesta Integration Work?
    Glaze is a HTML Template which is used for the main pages of your website. Then there is a Blesta Integration Template ($30/year) which can be added to your order during checkout. We provide a 5 minute guide showing you how to integrate your HTML Template's header/footer/images/CSS with your Blesta Integration Template to create a pixel perfect match between both. The recommended setup is:
    domain.com - The Glaze HTML Template which contains all of the template pages (domain.com/web-hosting.php, domain.com/iptv.php, domain.com/company.php etc)
    domain.com/directory/ - Blesta installed (client accounts, cart, tickets etc) along with the Blesta Integration Template we provide.
    With this setup you can build your main website using the Glaze HTML pages that are lightning fast and fully customizable. Then you would simply need to activate Blesta as the integration type and link the order button(s) to the products you have created in Blesta (we provide documentation on how to do this). So your visitor goes to your website and views the products/services you provide within the Glaze HTML Template. They click on an order button and it takes them to Blesta to complete their purchase. Both your HTML website and Blesta pages match thanks to the pixel perfect integration.

    You will find our dedicated website listing our Blesta Templates here: Blesta Templates
     
    Glaze Pages
    Glaze comes packed with the following pages out of the box:
    HTML Template
    - Sales Pages: Shared Hosting, Reseller Hosting, VPS Hosting, Dedicated Servers, Cloud Hosting, Game Servers, Virtual Private Network, IPTV, Hosting Addons, Web Design
    - Content Pages: Homepage, Company, Affiliate Program, Why Choose Us, Testimonials
    - Addons Pages: Addons, WHMCS Templates, WordPress Themes, HTML Templates, Blesta Templates, Clientexec Templates, WISECP Templates, HostBill Templates, Scripts, Logo Design, Banner Design, WHMCS Modules, WHMCS Services, WordPress Services, Blesta Services, Clientexec Services
    - Legal Pages: Terms Of Service, Acceptable Usage Policy, Privacy Policy
    Blesta Integration Template ($30/year)
    - Blesta Pages (all) - client area, cart, knowledgebase, tickets etc

    Why Zomex?
    1) We're passionate - We have a great passion for the web hosting industry and making the best products/services for your business.
    2) We provide support based on our experience in the web hosting industry.
    3) We listen to your feedback
    4) We have a proven track record in providing Web Hosting Industry products/services.
    5) Our products are constantly updated to keep up with the ever-evolving hosting industry.

    Unsure How To Start A Web Hosting Business?
    We have created a very detailed guide on the web hosting reseller business:
    How to start a web hosting reseller business

    We Look Forward To Hearing From You
    If you have any questions at all feel free to reply to this thread, create a support request or send us an email:
    Sales department at sales (at) zomex com
    or contact me personally at jack (at) zomex com
    Thank you for showing interest in our services and have a great day!
    Warm Regards
    Jack Curtis - CEO
    Zomex.com
     
     
     
     
     





  22. Like
    Michael reacted to Paul in CRM for Blesta   
    Nice, looks like there's still some work to do with being able to add notes, tasks, quotes, and other things for a lead. Done right, a CRM could be pretty popular for Blesta. Nice work! Looking forward to seeing the finished product.
    Separately, I like your gray/red color scheme also, very nice.
  23. Thanks
    Michael reacted to zomex in Stellar Blesta Template | HTML Template With Blesta Integration | Settings File | HTML Snippets | Ready-Made   
    Stellar

    Stellar is a fully responsive HTML Template with optional Blesta Integration and comes with many features and includes free support.
    Price: $69.99 - Optional $30/year for Blesta integration.
    Learn More | View Demo | Order Now
    ^ Please view the links above to learn more. Stellar is only one of our many Blesta Templates.
     
    Save $20 On Stellar!
    Use coupon code blestaforum during checkout for a huge $20 discount on our Stellar Blesta Template!
     
    Stellar Features
    - Responsive - Stellar is a responsive Blesta Template meaning it will support any device used to view it. For example if your visitor uses a desktop computer they will see the full-size version of the Stellar. If they view it with a mobile device the template will automatically "respond" to the size of that device allowing your website to support all devices.
    - Blesta Integration Template ($30/year) - Stellar comes with an optional Blesta Integration Template. So your main website will utilise the Stellar and you can use Blesta to add functionality such as client accounts, cart, tickets, automation & more to your website. Our easy 5 minute integration process will show you how to add your HTML Templates header/footer/images/CSS to the Blesta integration template. The process will create a pixel perfect match between your Stellar & Blesta pages.
    - 4 Plan Design Layouts - This Blesta Template comes with 4 design options to display your plans using easy to use HTML. Included layouts are multiple pricing tables, data tables, feature boxes & slider.
    - 3 Menu Design Options - This Blesta Template supports 3 menu design options that are changed within the HTML markup. Options include a mega menu, single dropdown or no dropdown.
    - Ready Made Sales Pages - Ready-Made sales pages to display your products/services. All pages have exclusive out of the box content and support multi-display options. Built with HTML they can be edited easily.
    - PHP Structure - Stellar uses PHP includes allowing you to update consistent parts of the template (such as the menu, footer, head etc) in one file. Changes made to the include files are automatically updated within the HTML pages.
    - HTML Snippets - Stellar is a Blesta Template packed with a range of copy/paste HTML code snippets which you can use to easily create pricing tables, feature boxes, buttons & more.
    - Unlimited Customization - This template is built using HTML so you have unlimited possibilities for customization (with HTML experience). Create new pages, edit the menu, implement ready-made HTML Snippets to generate content & more.
    And much more >> View All Features
     
    How Does The Blesta Integration Work?
    Stellar is a HTML Template which is used for the main pages of your website. Then there is a Blesta Integration Template ($30/year) which can be added to your order during checkout. We provide a 5 minute guide showing you how to integrate your HTML Template's header/footer/images/CSS with your Blesta Integration Template to create a pixel perfect match between both. The recommended setup is:
    domain.com - The Stellar HTML Template which contains all of the template pages (domain.com/web-hosting.php, domain.com/iptv.php, domain.com/company.php etc)
    domain.com/directory/ - Blesta installed (client accounts, cart, tickets etc) along with the Blesta Integration Template we provide.
    With this setup you can build your main website using the Stellar HTML pages that are lightning fast and fully customizable. Then you would simply need to activate Blesta as the integration type and link the order button(s) to the products you have created in Blesta (we provide documentation on how to do this). So your visitor goes to your website and views the products/services you provide within the Stellar HTML Template. They click on an order button and it takes them to Blesta to complete their purchase. Both your HTML website and Blesta pages match thanks to the pixel perfect integration.

    You will find our dedicated website listing our Blesta Templates here: Blesta Templates
     
    Stellar Pages
    Stellar comes packed with the following pages out of the box:
    HTML Template
    - Sales Pages: Shared Hosting, Reseller Hosting, VPS Hosting, Dedicated Servers, Cloud Hosting, Game Servers, Virtual Private Network, IPTV, Hosting Addons, Web Design
    - Content Pages: Homepage, Company, Affiliate Program, Why Choose Us, Testimonials
    - Addons Pages: Addons, WHMCS Templates, WordPress Themes, HTML Templates, Blesta Templates, Clientexec Templates, WISECP Templates, HostBill Templates, Scripts, Logo Design, Banner Design, WHMCS Modules, WHMCS Services, WordPress Services, Blesta Services, Clientexec Services
    - Legal Pages: Terms Of Service, Acceptable Usage Policy, Privacy Policy
    Blesta Integration Template ($30/year)
    - Blesta Pages (all) - client area, cart, knowledgebase, tickets etc

    Why Zomex?
    1) We're passionate - We have a great passion for the web hosting industry and making the best products/services for your business.
    2) We provide support based on our experience in the web hosting industry.
    3) We listen to your feedback
    4) We have a proven track record in providing Web Hosting Industry products/services.
    5) Our products are constantly updated to keep up with the ever-evolving hosting industry.

    Unsure How To Start A Web Hosting Business?
    We have created a very detailed guide on the web hosting reseller business:
    How to start a web hosting reseller business

    We Look Forward To Hearing From You
    If you have any questions at all feel free to reply to this thread, create a support request or send us an email:
    Sales department at sales (at) zomex com
    or contact me personally at jack (at) zomex com
    Thank you for showing interest in our services and have a great day!
    Warm Regards
    Jack Curtis - CEO
    Zomex.com





  24. Like
    Michael reacted to Tyson in Timezone UTC Casablance   
    The UTC timezone offset shown in Blesta comes from php's timezone database. You may need to update php to use the latest timezone database if Casablanca is no longer accurate because of a change in policy regarding the timezone.
  25. Like
    Michael reacted to Tyson in Vultur module trying to directly access $module_row from parent   
    Thanks! This will be fixed in CORE-3040 for v4.5.0.
×
×
  • Create New...