Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/19/2016 in all areas

  1. For one reason or another, we do get a lot of requests to go ahead and generate the next renewal invoice for a service early. The ability to forcibly generate these from an admin standpoint would be excellent!
    2 points
  2. Blesta Addons

    Blesta's Cache

    +1 for this question . what i can help from the basic code, , the cache system is already enabled by default in blesta Configure::set("Caching.on", true) . a sample code like this can work , but not tested . $cache = Cache::fetchcache('your_plugin_controller_pdt_file', $this->company_id . DS . 'plugins' . DS ); // if a copy of cache existe if ($cache) { // here you should return the cached file return unserialize(base64_decode($cache)); } // no cache existe , return output and create cached file else { $pdt_file = $this->view->fetch("your_plugin_controller_pdt_file"); // get the pdt file // create cached file if cache system enabled if ( (Configure::get('Caching.on') && is_writable(CACHEDIR)) ) { Cache::writecache('your_plugin_controller_pdt_file', base64_encode(serialize($pdt_file)), strtotime( Configure::get('Blesta.cache_length') ) - time( ), $this->company_id . DS . 'plugins' . DS ); } }
    2 points
  3. Just an update on this. I've created CORE-2062 to force port 25565 when using a dedicated IP, since Multicraft doesn't default to that behavior (oddly enough).
    1 point
  4. Paul

    Blesta Multicraft Dedicated Ip

    Just an update, I've created CORE-2062 to address this within the module.
    1 point
  5. Yes, it creates a problem though if as an admin you invoice for multiple cycles and a single invoice is created per-service as I suggested in the task. I wonder if we should create an individual invoice for each cycle or handle it differently.
    1 point
  6. This not change the cPanel Password, Only changes the password in the Database. You can Log in as Client and change the password in the Change Password Tab. In the next update I will add an option to change the password from the Admin Area.
    1 point
  7. Please see CORE-2057. This thread will serve as discussion on this task, if you have any comments, please let us know. There is additional planning required for this task prior to development.
    1 point
  8. Tyson

    Move Service

    I think you'll need to write an importer to map the service fields in the Universal Module to the corresponding fields for the OpenSRS module and then update all Universal Module services to assign them to an OpenSRS module row.
    1 point
  9. Michael

    Importing Whmcs Bombed

    Weird hopefully the guys can help
    1 point
  10. The module is maintained by ModuleMatic that is a division of CyanDark.
    1 point
  11. Sounds like a good idea but that would move the settings to the order form settings probably and two boxes. [x] Allow to upgrade [x] Allow to downgrade.
    1 point
  12. +2 (One of me and another of my cat )
    1 point
  13. Paul

    Migration Script Whmcs 6.2

    I've met Matt Pugh several times and he's always been nice to me in person. We are competitors, but there's no reason we can't get along. @zmjwong give the import a try, if you run into any trouble let us know.
    1 point
  14. Hi, First of all, I'm glad that you are happy with the module. If you want send a donation, you can send to order@cyandark.com. We are working to resolve the problems with the email tags for the next update.
    1 point
  15. Yeah having a client side button for this too would be nifty.
    1 point
×
×
  • Create New...