Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/22/2019 in all areas

  1. 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
    1 point
  2. we have found the issue updating files will be done after we test the full actions in blesta 4.4.0 .
    1 point
  3. Sir please wait, this is a forum not a chat box !!!!
    1 point
  4. Tyson

    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();
    1 point
  5. Michael

    Support manager API

    Thank you Jonathan mate
    1 point
  6. Jono

    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);
    1 point
  7. Please avoid responding in threads created by me - help others with your time. I do not find you to be a professional individual.
    1 point
×
×
  • Create New...