Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/11/2019 in all areas

  1. we have a gateway that set a error if returned from the gateway and set it to the returned data, but blesta is not showing the returned error . i have made a simple test and made the buildprocess return a error, but blesta client side is not showing it when the client want to pay with that gateway. $this->Input->setErrors($this->getCommonError('invalid')); return; is blesta not showing the returned errors in process view, or we have missed something ?
    1 point
  2. CanadaCloudHost

    ServerNinja

    My new company after leaving my old business partner.
    1 point
  3. @Jono I can confirm this issue. I hope that it is fixed as soon as possible...
    1 point
  4. activa

    Translation menu entries

    You should translate languages files indide every plugin .
    1 point
  5. Thanks, I think that would be a useful addition. We'll look into it for CORE-3066.
    1 point
  6. after some look at blesta code, i find that the GatewayPayments->getBuildProcess() is not setting the errors, it only return the html returned data, in this case is a empty value . we have made a simple fix, in two files . components/gateway_payments/gateway_payments.php line 162 change from return $html; to if (($errors = $gateway_obj->errors())) { // If no response given and errors set, pass those errors along $this->Input->setErrors($errors); return; } return $html; file controllers/client_pay.php line 868 change from $this->set( 'gateway_buttons', $this->Payments->getBuildProcess( $contact_info, $total, $payment['currency'], $apply_amounts, $options, $payment['method']['pay_with'] ) ); to $gateway_buttons = $this->Payments->getBuildProcess( $contact_info, $total, $payment['currency'], $apply_amounts, $options, $payment['method']['pay_with'] ); if ($errors = $this->Payments->errors()) { $this->setMessage('error', $errors); } $this->set('gateway_buttons', $gateway_buttons); with this way, any error returned the the buildproccess will shown to the client . like invalid zip code, empty state ...ect
    1 point
  7. coreyman

    User API Access

    You wouldn't need someone familiar with blesta functions to create the API. Just someone that is familiar creating API's. I use freelancer.com for work that I hire out.
    1 point
×
×
  • Create New...