Jump to content

Blesta Addons

Alpha Developers
  • Posts

    4,868
  • Joined

  • Last visited

  • Days Won

    389

Posts posted by Blesta Addons

  1. the steps,

    Create a multiple servers, assign the servers to a Server Groups .
    create package for cpanel,  select the created Server Group  and cpanel package, then create the package .

    go to order form and order the package, in Checkout page, we select the gateway and we check the agreement, when we submit the order we get the error 

    An internal error occurred. The module row is unavailable.

    it only accept the order if we change the package from selecting the server group to Any.

    any one can reproduce? or confirm .

     

  2. i think you have misunderstand me, let make a simple example with logicboxes module, create a package for a tld that need a custom fileds like .le or .asia .

    from admin side in client profile page, got to add service, then select the package for that TLD, then only the standard fields will be shown, the custom fields will not be listed .

  3. when a client is logged in, blesta set the client info to the global structure view, but for staff is not the same, we can't get the staff name, email ... ect  in the structure, this info is only available in the edit setting for profile.

    sample case, we need to show a welcome message (Hello mr xxxxxx, ....) in our theme .

    i think the code should be like this, and it should be done in the app_controller.php asi think, adding it to the admin_controller.php is not take any effect that because all admin_xxx file inherit from AppController directly

                    $this->uses(['Staff']);
    
                    $staff = $this->Staff->get($this->Session->read('blesta_staff_id'));
                    if ($staff) {
                        $this->structure->set('staff', $staff);
                    }

     

    or the magic option is to allow as inject vars to the structure view from preAction event or any new similar hook, let say i want to inject a list of PM's to the structure to use it in our custom admin theme .

  4. On 9/26/2019 at 9:13 PM, Jason Ryan said:

    Hello -

    I haven't been able to use this plugin (which I have paid for) for some time now because it is behind on compatibility with newer versions. No offense, but I would think that because you specifically develop plugins and add-ons for Blesta that you would be more on top of new releases and making sure everything you sell is compatible with these newer versions when they are released? All of my clients got used to the old version that displayed the invoice right in the Client Dashboard and have been reverted back to the old way of downloading PDFs. When do you expect to have a working version of this ready to go? Or should i just request a refund and just stick with what I have now?

    Thanks

    Hello Sir

    if i remember well i have updated the components, but i'm not sur if the guys has added it to the download section, let me check for you .

    Edit : Hello again, i found that the plugin was updated already to 3.1.

    Edit 2 : i see that you claim about cronjob delivery, sorry for the misunderstanding, i will try to produce it, i have tested the manual delivery and it work for me, i will let the components active to see the error logs . do you have any error logs for this cron?

  5. 8 hours ago, Jason Ryan said:

    So I have updated to Blesta 4.6 and PHP 7.2 and found that if I have the HTML Invoice selected in Invoice Customization, it causes delivery issues with the Deliver Invoices cron task. When I disable it, that cron task runs fine. Just thought you should know.

    We have not tested with 4.6 yet . we will do it soon and release a update .

  6. 21 hours ago, Joseph H said:

    The invoice total is 120000. We don't usually use decimals for our currency as so all prices are exact. And there is no credit remaining from any previous transactions.

    HAVE YOU CHECKED THE ENTRY IN DATABASE BY PHPMYADMIN FOR EXAMPLE ?

     

  7. Blesta use container, and from v4.0  it's possible to extend the container. but we can't extent it globally unless we load our class in config/services.php .

    extending the container from preAction event is not working.  any chance to allow us developers to load our classes in the system without hacking the core files (init.php file or the services.php file) ?

     

  8. 22 hours ago, Paul said:

    You can probably manually change the value in the settings to override.

    i know that, but i prefer to be in the core, every time we upgrade we need to make our modification again and again, the more in the core the less change we need to do in every upgrade .

    22 hours ago, Paul said:

    but we haven't really had any other feedback on the setting so I'm not sure how many would want > 60 days.

    60 days in some services is not a sufficient time to cancel the service .

  9. i have in my a log a warning about a custom plugin, after a search a found the warning about a missing array index in service edit event .

    $params = $event->getParams();
    $client_id  = $params['vars']['client_id'];

    from docs page the service edit event a client_id is returned in the vars array .can the staff check if their is something with this event and returned data .

     

     

     

  10. i suggest to use DataTables in tables specially in client side for invoices, services and transactions . the plugin add pagination and search with filter without the need to any http request, why in client side?

    - Blesta doesn't offer search option for clients in services, transactions, invoices
    - majority of clients has some few services, invoices and transaction, so it will not lead to freezing page or slow navigation. (against admin side)

    we using it in some other project and is totally a wonderful plugin to play with tables, and we hope to see it in blesta .

  11. 13 hours ago, Gabriel Gutierrez said:

    Thank you, once the invoice is generated for both services, can the client choose to separate the invoice or does he have to pay both services?

    no option to split invoice, he need to pay the whole amount of invoice to activate all the services.

  12. 3 minutes ago, Gabriel Gutierrez said:

    I've got a hosting company, so in the order form, the client chooses his domain and the his hosting, what I would like is the domain and the hosting to be only 1 invoice, the client has to pay them together. 

    this already exist, when the client select the domain then he select the hosting pack after the checkout all services in the cart are invoiced in  one invoice .

     

  13. 49 minutes ago, Gabriel Gutierrez said:

    Hi,

    I want to merge two services, so when an invoice is generated the client has to pay both services in 1 invoice. Is this possible? or is there a module/plugin I can install?

    Thanks.

    Regards,

    Gabriel

    you need to merge two services or create invoice for two services that has the same renew date ?

     

×
×
  • Create New...