• 23-09-2023, 20:02:49
    #1
    There was an error starting your payment, please try again later..{"status":false,"errors":{"productData.amou nt":["The product data.amount must be an integer.","The product data.amount must be greater than or equal 100."]}}
    smm panelimde ödeme yöntemi paywant var ama ödeme yaparken bu hta çıkıyor
  • 23-09-2023, 20:19:18
    #2
    semihmalkoc53 adlı üyeden alıntı: mesajı görüntüle
    There was an error starting your payment, please try again later..{"status":false,"errors":{"productData.amou nt":["The product data.amount must be an integer.","The product data.amount must be greater than or equal 100."]}}
    smm panelimde ödeme yöntemi paywant var ama ödeme yaparken bu hta çıkıyor
    Fiyatı integer olarak göndermelisiniz hocam, normal fiyatı 100 ile çarparak çözebilirsiniz.
  • 23-09-2023, 20:24:38
    #3
    bagbaq adlı üyeden alıntı: mesajı görüntüle
    Fiyatı integer olarak göndermelisiniz hocam, normal fiyatı 100 ile çarparak çözebilirsiniz.
    Nasıl yapicam onu hangi sayıyı yazsam öyle oluyor
  • 23-09-2023, 20:25:36
    #4
    kodlardan api'ye gönderilen miktarı 100 ile çarpmalısınız
  • 23-09-2023, 20:29:46
    #5
    bagbaq adlı üyeden alıntı: mesajı görüntüle
    kodlardan api'ye gönderilen miktarı 100 ile çarpmalısınız
    $amount_fee = $amount_fee * 100;
    $amount_fee = number_format($amount_fee * $lastcur, 2, '.', '');
    $payment_types = substr($payment_types, 0, -1);
    $hashOlustur = base64_encode(hash_hmac('sha256', $user["email"] . "|" . $user["email"] . "|" . $user['client_id'] . $extra['apiKey'], $extra['apiSecret'], true));
    $postData = array('apiKey' => $extra['apiKey'], 'hash' => $hashOlustur, 'returnData' => $user["email"], 'userEmail' => $user["email"], 'userIPAddress' => GetIP(), 'userID' => $user["client_id"], 'proApi' => TRUE, 'productData' => ["name" => $amount . $settings['currency'] . " Tutarında Bakiye (" . $paymentCode . ")", "amount" => $amount_fee, "extraData" => $paymentCode, "paymentChannel" => $payment_types,
    "commissionType" => $extra["commissionType"]
    burayı buldum nereyi düzenliyeceğim hocam
  • 23-09-2023, 20:31:52
    #6
    semihmalkoc53 adlı üyeden alıntı: mesajı görüntüle
    $amount_fee = $amount_fee * 100;
    $amount_fee = number_format($amount_fee * $lastcur, 2, '.', '');
    $payment_types = substr($payment_types, 0, -1);
    $hashOlustur = base64_encode(hash_hmac('sha256', $user["email"] . "|" . $user["email"] . "|" . $user['client_id'] . $extra['apiKey'], $extra['apiSecret'], true));
    $postData = array('apiKey' => $extra['apiKey'], 'hash' => $hashOlustur, 'returnData' => $user["email"], 'userEmail' => $user["email"], 'userIPAddress' => GetIP(), 'userID' => $user["client_id"], 'proApi' => TRUE, 'productData' => ["name" => $amount . $settings['currency'] . " Tutarında Bakiye (" . $paymentCode . ")", "amount" => $amount_fee, "extraData" => $paymentCode, "paymentChannel" => $payment_types,
    "commissionType" => $extra["commissionType"]
    burayı buldum nereyi düzenliyeceğim hocam
    en sona "echo $amount_fee;" ekleyip sonucu paylaşabilir misiniz
  • 23-09-2023, 20:37:26
    #7
    bagbaq adlı üyeden alıntı: mesajı görüntüle
    en sona "echo $amount_fee;" ekleyip sonucu paylaşabilir misiniz
    birşey değişmedi hocam
  • 23-09-2023, 20:47:47
    #8
    Whatsapptan yazıyorum
  • 24-09-2023, 01:36:07
    #9
    $amount_fee = $amount_fee * 100;
    $amount_fee = number_format($amount_fee * $lastcur, 2, '.', '');
    kısmını

    $amount_fee = number_format($amount_fee * $lastcur, 2, '.', '');
    $amount_fee = bcmul($amount_fee, 100) ;
    ile değiştirip dener misiniz?