Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author m1tk00

    (@m1tk00)

    Здраво,

    Мислам дека не ви е конфигуриран плугинот добро. Проверете ги сетинизите повторно.

    Митко

    Thread Starter vapekisol

    (@vapekisol)

    Не променивме ништо биде??и ни вратиа на маил. Рекоа само да провериме повторно и трансакци?а про?де како успешна. Следен чекор е ва?да во жива средина.

    Ви благодарам… и една чиста 5ка за плагинов.

    Поздрав ??

    • This reply was modified 4 years, 1 month ago by vapekisol.
    Thread Starter vapekisol

    (@vapekisol)

    Здраво Митко,

    Дали би може помош и за ова – на повратнит маил ни го кажаа ова:

    PS: Please post the following parameter to Nestpay Gateway as a hidden parameter with HTTP form. This mandatory parameter solves the encoding problem of the payment and return pages during the transaction action.

    <input type=”hidden” name=”encoding” value=”UTF-8″>

    Каде би требале да го вметнеме ово? дел?

    Hello @vapekisol,
    You should edit plugin file: woo-halkbank-payment-gateway/classes/class-wc-halk-payment-gateway.php

    You will go down and will find this code where we see the FORM,

    <form name="form" id="<?php echo $this->id ; ?>-3d-secure-form" action="<?php echo $this->payment_url; ?>"
    			         method="POST">
    				   <div>
    					   <input type="hidden" name="clientid" value="<?php echo $clientId; ?>" />
    					   <input type="hidden" name="amount" value="<?php echo $amount; ?>" />
    					   <input type="hidden" name="islemtipi" value="<?php echo $transactionType; ?>" />
    					   <input type="hidden" name="taksit" value="<?php echo $instalment; ?>" />
    					   <input type="hidden" name="oid" value="<?php echo $oid; ?>" />
    					   <input type="hidden" name="okUrl" value="<?php echo $okUrl; ?>" />
    					   <input type="hidden" name="failUrl" value="<?php echo $failUrl; ?>" />
    					   <input type="hidden" name="rnd" value="<?php echo $rnd; ?>" />
    					   <input type="hidden" name="hash" value="<?php echo $hash; ?>" />
    					   <input type="hidden" name="storetype" value="<?php echo $storetype; ?>" />
    					   <input type="hidden" name="lang" value="<?php echo $lang; ?>" />
    					   <input type="hidden" name="currency" value="<?php echo $currencyVal; ?>" />
    					   <input type="hidden" name="refreshtime" value="10" />
    					   
    				   </div>
    				   <script>
    					   jQuery('#<?php echo $this->id ; ?>-3d-secure-form').submit();
    				   </script>
    			   </form>

    Inside the FORM where we see <input type="hidden" name="refreshtime" value="10" />
    before or after that input, add it in a new line and paste your code <input type=”hidden” name=”encoding” value=”UTF-8″>

    EDITED CODE WILL BE LIKE this :

    <form name="form" id="<?php echo $this->id ; ?>-3d-secure-form" action="<?php echo $this->payment_url; ?>"
    			         method="POST">
    				   <div>
    					   <input type="hidden" name="clientid" value="<?php echo $clientId; ?>" />
    					   <input type="hidden" name="amount" value="<?php echo $amount; ?>" />
    					   <input type="hidden" name="islemtipi" value="<?php echo $transactionType; ?>" />
    					   <input type="hidden" name="taksit" value="<?php echo $instalment; ?>" />
    					   <input type="hidden" name="oid" value="<?php echo $oid; ?>" />
    					   <input type="hidden" name="okUrl" value="<?php echo $okUrl; ?>" />
    					   <input type="hidden" name="failUrl" value="<?php echo $failUrl; ?>" />
    					   <input type="hidden" name="rnd" value="<?php echo $rnd; ?>" />
    					   <input type="hidden" name="hash" value="<?php echo $hash; ?>" />
    					   <input type="hidden" name="storetype" value="<?php echo $storetype; ?>" />
    					   <input type="hidden" name="lang" value="<?php echo $lang; ?>" />
    					   <input type="hidden" name="currency" value="<?php echo $currencyVal; ?>" />
    					   <input type="hidden" name="refreshtime" value="10" />
    					   <input type=”hidden” name=”encoding” value=”UTF-8″>
    				   </div>
    				   <script>
    					   jQuery('#<?php echo $this->id ; ?>-3d-secure-form').submit();
    				   </script>
    			   </form>
    • This reply was modified 3 years, 8 months ago by arbreshu.
    • This reply was modified 3 years, 8 months ago by arbreshu.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Error 99 (No Installment) – Невалидни трансакции’ is closed to new replies.