Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/21/2013 in all areas

  1. Cody

    Release 3.0.1

    Version 3.0.1 is now available. You can download it at https://account.blest...er/client_main/. This is a patch release that corrects issues with 3.0.0. Patching Blesta See Patching Blesta in the User Manual for instructions. Release Notes - Blesta Core - Version 3.0.1 ## Version 3.0.1 2013-08-21 ### Bug * [CORE-658] - The State field is not set correctly when selecting to copy information from an existing contact * [CORE-659] - Calendar delete event action not using POST * [CORE-660] - Modules delete action not using POST * [CORE-661] - Managing service produces undefined property $PackageGroups * [CORE-662] - PayPal Payments Standard: Error message "The form token is invalid" is displayed when a client returns to Blesta from processing payment * [CORE-663] - Download Plugin: Changing permissions to publicly available reverts to must be logged in * [CORE-664] - Legacy nonmerchant gateway subscription incompatibility * [CORE-665] - Setting/unsetting encryption key affects private_key for all companies in system * [CORE-667] - Username error occurs when attempting to set a client's username back to their email address * [CORE-668] - PayPal Payments Standard: Payment validation field, "business", may not always be included in the gateway response, causing the transaction to remain pending * [CORE-669] - cPanel Module: Can't add a server when using a reseller user, only root * [CORE-671] - Themes do not save the change back to the default theme * [CORE-672] - Editing an addon service whose package is unlimited complains of quantity available * [CORE-678] - Available service add-ons display all standard package group packages if there are no addon packages * [CORE-679] - Import Manager: Imports all module accounts with the same module row * [CORE-680] - Enabling GeoIP causes error due to missing mbstring extension * [CORE-681] - Invoice padding settings displayed but not supported * [CORE-682] - Check if installed by verifying Blesta.database_info config is set * [CORE-683] - Missing template parse check when editing email templates * [CORE-684] - Invalid tags result in blank email * [CORE-685] - Support Plugin: Adding a staff note counts the staff member as the last replier * [CORE-687] - Listing gateways may attempt to load files that being with '.' * [CORE-689] - Incorrect date format on invoices created from adding a service * [CORE-691] - Order Plugin: Invalid custom field ID error * [CORE-693] - Editing contact Country/State fails to update view after saving ---
    1 point
  2. We haven't implemented a fix yet, so I couldn't tell you how to patch it yourself.
    1 point
  3. This bug is not fixed in v3.0.1 since CraigA reported it just before we released the patch, but it should be in the next patch.
    1 point
  4. To add to this, it also looks as though coupons are able to be applied to order forms even when said order form does not have "Allow Coupons" enabled.
    1 point
  5. Paul

    Advanced Search

    Thanks for the suggestion. We will be improving the search, but at the same time want to keep it fast. v2.5 was a lot simpler in terms of data structure, services had only a few fields, user1, user2, pass, opt1, and opt2 for example. In v3 service meta fields can be unlimited and can be encrypted, or serialized. I'd love more feedback on areas people think can be improved (and thank you for your feedback!) and we will be making some changes here eventually.
    1 point
  6. Thanks for the video. Have you noticed this applying only to order forms, or to any services created (e.g. 'Create Service' for a client from the admin interface)? Added as CORE-696.
    1 point
  7. This is fixed in CORE-669 for v3.0.1. This has also been added to it.
    1 point
  8. Paul

    Set Up Blesta From Cpanel

    That page does exist, interesting. I think they set it up, but didn't communicate to you what your login is. I recommend opening a ticket with them, and ask them what your login is. They should be able to get you up and running. What they have installed there is v2.5, I'm not sure if they have yet started issuing any v3 keys, you might ask if you're interested in v3. You can also download v3 from our home page and select to start a 30-day free trial in the interim. That'll get you up and running quickly and you can change the license key once they issue you one.
    1 point
  9. A login link will be in there with another update to the module and has already been assigned as CORE-622.
    1 point
  10. Cody

    Add New Contact Problem

    CORE-693 fixed in 3.0.1. To patch yourself remove lines 1558 - 1562 of /app/controllers/admin_clients.php: // Set client settings $vars->country = $client->settings['country']; $vars->currency = $client->settings['default_currency']; $vars->language = $client->settings['language']; to:
    1 point
  11. Cody

    Add New Contact Problem

    Confirmed. CORE-693.
    1 point
  12. http://www.blesta.com/forums/index.php?/topic/522-delete-invoice-feature/
    1 point
  13. MarkTheDaemon

    Initial Setup Error

    Have now set Blesta up on another VM successfully.
    1 point
  14. I have re-opened CORE-691 and noted this for Cody. I want to make sure this is in the patch tomorrow.
    1 point
  15. We are planning to do Google Wallet, however it has come to our attention that Google Wallet will not support hosting providers, which diminishes their usefulness in the industry.. unless they have changed their minds?
    1 point
  16. This task already belongs to CORE-514, and will be coming.
    1 point
  17. I think Cody's fix from the other thread should be update /app/models/clients.php (line 89): $this->setCustomField($field->name, $client_id, isset($vars['custom']) && array_key_exists($field->name, $vars['custom']) ? $vars['custom'][$field->name] : null); to $this->setCustomField($field->id, $client_id, isset($vars['custom']) && array_key_exists($field->id, $vars['custom']) ? $vars['custom'][$field->id] : null);
    1 point
  18. Sounds like a bug with how the order form passes custom field values for validation. I believe custom fields are validated one at a time, so even if all of them are erroneous, only the first error would show.
    1 point
  19. Yes, mine is the first (and only) one on the form.
    1 point
  20. Cody

    Add New Contact Problem

    I'm not sure I understand what you mean. Your screenshots seems to show this working exactly as expected. Please see How to Report a Bug.
    1 point
  21. Ken

    Time Billing For Services

    Absolutely. And I hope this always remains priority above all.
    1 point
  22. I'm not sure, other than installing in a sub-directory called /portal/. This would make it the base URL for everything though, /portal/client/login and /portal/admin/login. See "routes.php" in http://docs.blesta.com/display/user/Configuration You can change the admin login URL by editing this config file.
    1 point
  23. Good idea, moved.
    1 point
  24. Tyson

    Invoices Are Not Sent

    Go to [settings] -> [Emails] -> and click to edit "Invoice Delivery (Unpaid)". Paste the contents of the HTML and text versions of the email template here. Your error points to a missing {% endfor %} tag, and sanetcy's solution should resolve it:
    1 point
×
×
  • Create New...