Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/09/2017 in all areas

  1. Thanks, only had it for a week and had over 2500 e-mails
    2 points
  2. You need to remove the email address if you can from the cronjob top bit or add >/dev/null 2>&1 to the end of the cronjob task Eg: /usr/local/bin/php /home/username/public_html/index.php cron >/dev/null 2>&1
    2 points
  3. we have unchecked "Use Package Pricing for New Services Only " . when the client switch to a currency that is not setup in the package prices, blesta make the exchange rate and show the price with the new currency . at here all thing is good . now hen the package has Configurable Options , blesta only show it if the selected currency are already set in the Configurable Options . is this a limitation of Blesta or we have something wrong in our system ? if we have 8 active currency , we need to enter 8 times the prices for each currency for every term, and that is a lot for manual work , also if the exchange rate change we need to update them all .
    1 point
  4. Thanks Due.. I send him a PM Regarding the Issue. Hope he will reply soon. BTW Can you tell me his Website Please..
    1 point
  5. Not sure then sorry wonder if @Max will reply otherwise I recommend you contact Max on his website and see if he can help you as it's his module / product.
    1 point
  6. Thank you very much Michael. That answers my question.
    1 point
  7. Web Hosting UK

    Order Domain only?

    Thanks, i'm going to test this within the next few days and will update.
    1 point
  8. Hey, thanks for the prompt reply! I found https://github.com/NETLINK/Blesta-Namesilo so Namesilo might be supported after all. Regarding Kloxo-MR and it's history, Kloxo-MR is a fork of Kloxo and AFAIK, it didn't have the same security track like Kloxo had. Kloxo-MR is actively maintained to the date. This is really important in order to migrate! So neither Kloxo-MR or VestaCP is supported by Blesta as of today right? Those 2 are the better open source web hosting control panel. I have extensive experience with Kloxo-MR, but only tested VestaCP for a quick ride. Feature wise, Kloxo-MR is a complete solution with great support for different web servers/reverse proxies etc, but the use of qmai is, IMO, a downside. Support however, is awesome with Kloxo-MR in their forum! Great with Namecheap support too, don't need SSL, it's all about Letsencrypt these days, both Kloxo-MR and VestaCP. Anyway, can anyone give a quote for a Kloxo-MR module? We need to open source it! Thanks for the link to doc, but where is the source code of Blesta since it's supposed to be 99% open source?
    1 point
  9. If you mean: "Cancel Service Changes Days After Due" that's only changes if someone upgrades something and doesn't pay after ___ it will be cancelled and reverted if I read the ? probably. If you mean "Allow Clients to Cancel Services" that allows clients to cancel services. The Auto cancel plugin will cancel services / invoices when they aren't paid. You can disable the credit card if you aren't using it.
    1 point
  10. Michael

    WHMCS to Blesta & features

    There isn't a module for Kloxo-MR (Not sure how many people would use it as of the history) but you can open a feature request here: https://requests.blesta.com/ There's no module yet but I can't remember if Vesta are going to be doing it or if the Blesta guys will be. Nope but you can open a feature request here: https://requests.blesta.com/ Yes there is but not for SSLs. Yes using the Logicboxes module. Yes There is from BluePay to Stripe. A few people I know have imported successful from 7.0 but not sure about 5.x. The best guys to ask are Blesta, @cyandark, @Blesta Addons, PauloV and Adam but I can't add anymore mentions for some reason. https://docs.blesta.com/display/dev/Overview http://source-docs.blesta.com
    1 point
  11. haha at least you know the cron was working.
    1 point
  12. Adam

    Increase Session Timeout?

    Doh! Apply this patch file. It should work. It will attempt to load from config/blesta.php if a key named 'Session.ttl' exists. Otherwise, defaults to 30 minutes. diff --git a/core/ServiceProviders/MinphpBridge.php b/core/ServiceProviders/MinphpBridge.php index ccefd20..9367ff4 100644 --- a/core/ServiceProviders/MinphpBridge.php +++ b/core/ServiceProviders/MinphpBridge.php @@ -197,9 +197,10 @@ class MinphpBridge implements ServiceProviderInterface { $this->container->set('minphp.session', function ($c) { // Determine the TTLs and which to set for the database session + Configure::load('blesta'); $cookieName = 'csid'; $ttls = [ - 'ttl' => 1800, // 30 mins + 'ttl' => (Configure::exists('Session.ttl')) ? Configure::get('Session.ttl') : 1800, // 30 minutes 'cookie_ttl' => 604800, // 7 days ]; $dbTtl = (isset($_COOKIE[$cookieName]) ? $ttls['cookie_ttl'] : $ttls['ttl']); -Adam
    1 point
×
×
  • Create New...