Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/17/2015 in Posts

  1. Can the password reset link be added to this page? I've had clients not know there login and then they just decide to create a new account with a different email address and finish the order. Then I'm stuck with the mess of merging that information into their existing account.
    1 point
  2. Cody

    Release 3.6.1

    Version 3.6.1 is now available. You can download it in the Client Area. This is a patch release that corrects issues with 3.6.0. Patching Blesta See Patching Blesta in the User Manual for instructions. Release Notes See Blesta Core - Version 3.6.1. See all Change Logs.
    1 point
  3. It would be nice if we and customers could have a email when a cancellation has been made.
    1 point
  4. Ubersmith have excellent tooltip options for any product and add-on package like shown for the end-users in the attached screenshot: On the contrary Blesta doesn't allow to add any explanatory notices which would help end-users to take their decision. I really wanted to add something like but after trying different approaches I failed to do so and now my configurable option looks like this: Really isn't helpful much for the to the end-users
    1 point
  5. You could create race conditions. Each PHP process is spun off in a new thread, so there's no guarantee one finishes before the next is requested. This is especially problematic when a task performs operations that result in the PHP process blocking for IO, such as processing payments, or receiving email. If you were to do this, you would need to verify that the task ended before starting up the next.
    1 point
  6. Tyson

    Very Limited Events?

    All of the events are described here.
    1 point
  7. +1 . popup (modal) windows .
    1 point
  8. motuka

    How To Force Ssl?

    Most resellers have no access to root. So the easiest way is .htaccess
    1 point
  9. cPanel Extended is a module. You will need to upload it to /components/modules/. The States & Countries plugin would, indeed, be uploaded to /plugins/. My guess is the directory structure of the files you uploaded is not what Blesta expects, so it is not able to show them in the UI. Check your files, make sure that the first directory in the module (e.g. /components/modules/cpanel) contains the class file for the module (e.g. /components/modules/cpanel/cpanel.php). Afterward, head into Blesta under [settings] -> [Modules] -> [Available] to see the new module. Click the "Install" button and you should be good to go.
    1 point
  10. You make no sense at all, why would you need to discuss them with Blesta to work out how to sell your own themes haha good luck.
    1 point
  11. Yes you can: How do I enable errors on password reset? The only issue here is you are assuming it's a email address they are using for their username, if they pick a username they can't use their email address to reset. And this way by enabling it can allow people to check who is a customer by guessing email addresses which is why it's disabled by default.
    1 point
  12. I would like to see events exposed for ticket creation and updates to be able to write handlers to do things with notifications.
    1 point
  13. also for me, if we put activation instantly in our website , it should instantly my request goes for activating order and sending email . is a pain wait 5 minute or less to do it .
    1 point
  14. In my case, it's more about get paid service activated quick, my cron is 2 mins frequency by the way.
    1 point
  15. 1 minute cron jobs are a bad idea. It's too easy for them to pile up and execute on top of each other. If the point is to pull email from SMTP/IMAP server in near real time, create a script that runs constantly and polls the SMTP/IMAP server every 30 to 60 seconds. For example: <?php while (true) { $window = 60; $start = microtime(true); // TODO: do stuff $runtime = microtime(true) - $start; // wait until we can run again... sleep(max(0, (int) $window - $runtime)); }
    1 point
  16. activating order and sending email is the most wanted thing without delay .
    1 point
×
×
  • Create New...