Jump to content

Leaderboard

Popular Content

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

  1. Package/Product based revenue reporting is coming
    3 points
  2. mrrsm

    Namesilo Plugin

    Hey @NETLINK, I would be happy to make a PR to add the change for pulling/caching all the available extensions from namesilo. As long as you plan on merging PR's I'm happy to contribute. @Lucas you should be able to overwrite it as it is just an update to the same module.
    2 points
  3. i use virtualizor, but we have our own custom module called extended virtualizor . our module support configurable options and extra ips, is bit extended and simple as the solusvm module shipped with blesta .so if you provide solusvm vm and virtualizor vm, your client will not see any difference in the client side . we will release it in our new subscription system .
    2 points
  4. A new Square gateway (alpha) is available for testing. To install, download the attached , square.zip unzip and upload the "square" directory to ~/components/gateways/nonmerchant/ and visit Settings > Company > Payment Gateways to install and configure.
    1 point
  5. Lucas

    Afiliates Module for Blesta

    Looking forward to Blesta affiliate system. Unfortunately we do not yet make enough money to consider iDevAffiliate worth the cost, but we do definitely work with 2 - 3 providers who refer most of our local clients and would be great to offer them a fully automatic platform. I am actually trying to negotiate this right now and with WHMCS we did have it integrated already. Hopefully this comes sooner than later.
    1 point
  6. CORE-2462. Sorry for the slow response, looks like this one got lost for me too. Anyhow if you would like to implement this on your system immediately you can update components/invoice_delivery/invoice_delivery.php and add this code on line 164: if (($errors = $this->Emails->errors())) { $this->Input->setErrors($errors); }
    1 point
  7. we have a custom plugin, when we set a var called 'file' to the view we get a error, we have tested in so many plugins $this->set('file', $file_info); when we change the var from file to any other word like files or file_info the view is rendered successfully . the error we get is file_exists() expects parameter 1 to be a valid path, object given on line 157 in /home/xxxxxx/public_html/blesta/vendors/minphp/bridge/src/Lib/View.php
    1 point
  8. Correct. If we look at the minphp Bridge View class we see in the fetch method these lines of code: if (is_array($this->vars)) { extract($this->vars); } if (!file_exists($file)) { throw new Exception(sprintf('Files does not exist: %s', $file)); } In this case $this->vars contains all variables set using $this->set(). When the 'file' variable is extracted it overwrites $file with the value you set. In this case it sounds like you set an object which is of course not a valid argument for file_exists(). I suppose the bridge could handle it more quietly by adding a flag such as EXTR_SKIP or EXTR_PREFIX_SAME to the call to extract. In any case, it is not allowed to set a variable named $file to the view.
    1 point
×
×
  • Create New...