Jump to content

Tyson

Blesta Developers
  • Posts

    3,638
  • Joined

  • Last visited

  • Days Won

    242

Everything posted by Tyson

  1. Did you add line items to it before saving? Does the invoice have any line items associated with it (in the database)?
  2. Thanks, CORE-2403
  3. Thanks but this is intentional behavior.
  4. Tyson

    mass mailer error

    The directory permissions should be 0755 if created by the user the web server runs as, and kept above any web accessible directory.
  5. Tyson

    plesk access denied

    Can your installation connect over https? That error can occur over http. Otherwise there may be some permission in Plesk that needs to be configured to allow access to the API user.
  6. Wrong in what way? It looks like you doubled the term from 3 months to 6 months, but the price is less than double. Double the price would be 3990 INR, but the price is 3930 INR, a drop of 60 INR. Prorating to the new term for whatever number of days are remaining would produce a value less than 0 for the remainder of the term.
  7. Paul's suggestion was to run it manually so you can view the cron output to possibly identify an error with the task completing properly. If there is an error, it will give some insight into where to look next to resolve the task hanging.
  8. Thanks for the report. This will be fixed in CORE-2368 for the next release.
  9. Don't directly insert a date using date('c'). That includes timezone information and is not formatted the same as the field is expecting. Save a UTC date in the format YYYY-MM-DD HH:MM:SS.
  10. Yes, but Blesta v4 uses a newer version of minPHP that has changed. They can only be included if vendor code is included as well.
  11. Source docs don't include vendor code, so minPHP classes like Record wouldn't be apart of the list.
  12. v4 doesn't observe the Session.ttl config value. It is now set in the bridge service provider. It will probably be back as a config value somewhere in the future.
  13. Do you record payments that you haven't received yet? Not sure I follow exactly, as that feature is generally used to record payments you've already received, maybe a couple days earlier, and you're just now getting around to marking it received, so the received date would be in the past.
  14. Tyson

    Can't Edit User

    Thanks for the report, we'll take a look.
  15. You can either update where it's defined in /app/models/navigation.php or update where it's displayed in the template in /app/views/*/*/structure.pdt. There are no dynamic overrides.
  16. I don't know what "$this->parent" is. You can use "$this->requireLogin()" You should be extending your plugin's parent controller that extends AppController and implements the preAction method. The dispatcher throws an exception when attempting to load controllers that do not implement the preAction.
  17. So the issue is you cannot add a new coupon to an existing service in hopes that it will renew using that coupon? You may be getting the error because the coupon has reached it's quantity limit. Even though the coupon setting is set to allow for renewals, adding the coupon to a service is not a renewal, but an addition.
  18. Are you adding new package option pricing, and removing other package option pricing at the same time?
  19. They will probably extend AdminController in the future.
  20. Are you suggesting the message about it running for 60 minutes is displayed even though it ran and completed less than an hour ago?
  21. Quick answer is no. Each module is unique, so any solution to move from one to another would also be unique. An attempt to generalize a mapping between any module and any other module could be done, but that seems sketchy at best, and custom changes would still likely be necessary.
  22. Right click on the gravatar image in your browser and go to "Inspect". Copy the URL from the hyperreference and paste it in the address bar of your browser, then hit enter to visit the URL. Does the image appear? If yes, there is an issue with the server fetching the gravatar. If no, then your gravatar is not set for the email address you are using.
  23. I think we need to see more about what you're doing in source code to give you a better idea on what to do.
  24. $logged_in is set by AppController, so any page that extends AppController and uses ::preAction will have it defined. Your example using it, however, employs opposite logic for displaying the link. if (!$this->Html->ifSet($logged_in)) { ...user is not logged in... }
  25. Tyson

    Custom report

    A list of services and their renewal prices? A service's renewal price is not stored, but calculated on the fly. Determining the price would be very complicated and I would certainly not expect this to be done from SQL in a custom report.
×
×
  • Create New...