mirror of
https://github.com/mewebstudio/pos.git
synced 2026-04-26 01:45:55 +03:00
[GH-ISSUE #188] Akbank Hash Mismatch! Hatası #103
Labels
No labels
PayFlexV4
TROY
akbankpos
bug
duplicate
enhancement
garanti
help wanted
isbank
kuveyt
payten
posnet
pull-request
vakifbank
ziraat
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/pos#103
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @evrenonur on GitHub (Mar 4, 2024).
Original GitHub issue: https://github.com/mewebstudio/pos/issues/188
Hatanın özeti
Hash Mismatch! hatası almaya başladım. 01.03.2024 tarihine kadar test ortamında yaptığım işlemlerde herhangi bir hata almamaktaydım. Fakat bugün ki işlemlerimde hata almaktayım. Kodumda herhangi bir değişiklik vs yapmadım.
Yazdığım Kod
`<?php
namespace App\Http\Controllers;
use Mews\Pos\Entity\Card\AbstractCreditCard;
use Mews\Pos\Gateways\AbstractGateway;
class TestController extends Controller
{
public function index()
{
// $card = \Mews\Pos\Factory\CreditCardFactory::create(
// $pos,
// '5571135571135575',
// '26',
// '12',
// '001',
// 'Onur Evren',
// AbstractCreditCard::CARD_TYPE_MASTERCARD,
//
// );
public function kartTipi($number){
$number=str_replace(" ", "", $number);
}
`
@nuryagdym commented on GitHub (Mar 4, 2024):
Merhabalar,
Hala pos config'de (https://github.com/mewebstudio/pos/blob/master/config/pos.php#L29)
EstPoskullaniyorsaniz,Mews\Pos\Gateways\EstV3Pos::classkullanmayi deneyiniz.Not:
pos.php'yi direk kullanmayiniz, projenizde kopyasini olusturup onu kullaniniz.Ilk cozum sorunu gidermiyorsa bu satirda: https://github.com/mewebstudio/pos/blob/master/src/Gateways/EstPos.php#L42
var_dump($request->all());calistirarak icerigini paylasiniz.@evrenonur commented on GitHub (Mar 4, 2024):