Search the Community
Showing results for tags 'samesite'.
-
Merhaba arkadaşlar, Sitemde ödeme modülü olarak İyzico kullanıyorum. Birçok sebepten dolayı memnun olmamakla birlikte, alternatif bulamadığın için değiştiremedim. Bu konuda fikirlere sonuna kadar açığım. Karşılaştığım problemlere ne yazık ki İyzico teknik ekibinden dönüş alamıyorum. Dolayısıyla kendim çözmek zorunda kalıyorum. Yakın zamanda yurt dışından yapılan satın alımlarda, ödeme başarılı olmasına rağmen siparişin onaylanmadığını (siteme geri dönüş olmadığını) fark ettim. Konu gündemde olan same site cookie problemi. Çözüm için: .htaccess dosyanızı açın. Bu dosya root dizinde bulunuyor. Aşağıdaki kod satırını bulun. <IfModule mod_headers.c> Header unset Etag </IfModule> Ve aşağıdaki ile değiştirin. <IfModule mod_headers.c> <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|svg)$"> Header set Access-Control-Allow-Origin "*" </FilesMatch> Header unset Etag Header set Set-Cookie Secure;SameSite=None Header edit Set-Cookie ^(.*)$ $1;Secure;SameSite=None Header always edit Set-Cookie (.*) "$1; SameSite=None; Secure" Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure;SameSite=None </IfModule> Bu çözüm aynı zamanda sitesine başka siteler üzerinden iframe içinde erişim veren kullanıcılar için de geçerlidir. Iframe içinde açılan sitelerde de same site cookie problemi nedeniyle bazı PHP fonksiyonlar dönüş alamıyor. İyi çalışmalar.
-
Hi, why am i getting this warning and no solution ? Code: https://paste.ubuntu.com/p/GcNXwkHg6X/ to record google: A cookie associated with a cross-site resource at http://google.com.tr/ was set without the `SameSite` attribute. It has been blocked, as Chrome now only delivers cookies with cross-site requests if they are set with `SameSite=None` and `Secure`. You can review cookies in developer tools under Application>Storage>Cookies and see more details at https://www.chromestatus.com/feature/5088147346030592 and https://www.chromestatus.com/feature/5633521622188032. The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page. https://goo.gl/7K7WLu Thank you.