php şifreli SSL oturum verilerinin

0 Cevap php

I have 2 servers running, one for the dynamic content (nginx, php) and another for login (apache2, php)

i oturum bilgilerini paylaşmak için memcache kullanmak

i sunucu yazılımı yükseltilmiş ve o zamandan beri apache'ye oturum veriler şifrelenir

apache:
session::write("sessions/s53mqdhghmlrvnvjt05novt4m2","encrypted-data",0,1440)

nginx:
session::write("sessions/s53mqdhghmlrvnvjt05novt4m2","test|i:1;",0,1440)

hem sunucularda session-id en aynıdır ve tüm hala olması gerektiği gibi çalışır, böylece oturum tanımlama hala Sessionıd geçer

İki sunucu aynı php.ini kullanabilirsiniz

i ssl conf baktım ama şifreli olduğu oturum verilerini ayarlamak olacak bir şey bulmak edemedim

i apache / Mod_Ssl'li üzerinde şifreli olmaktan oturum verileri durdurmak nerede herkes biliyor

edit:
well i've found a working sollution but i still havnt found the origion of the problem i do know that the session data has to leave the php process to be encrypted by mod_ssl and the session save handler is called at the cleanup operations by php after the script end.
But there is nothing of this behaviour documented in the docs.

sollution :: oturumunda php tarafından sağlanan verileri kaydetmek yazmak değil (Sessiona kullanmak için) yeniden oturum karma oluşturmak ve bu tasarruf değil, şimdilik,

Bu okuma o sizin için ne kadar ve neden ben gerçekten verileri şifreler direktifini kapatmak bilmek istiyorum biliyorum.

0 Cevap