セッションレス、Cookie レスのショッピング カートを作成したいと考えています。どこから始めればよいですか?Safari (最終的には Firefox も) のサードパーティ Cookie に問題があるため、カートにセッションを使用できません。
質問する
1981 次
1 に答える
0
If you have issues with cookies only you can use session without cookies.
Turn off using cookie with session.use_cookies=0
and session.use_only_cookies=0
, and turn on trans sid session.use_trans_sid=1
. When use_trans_sid is enabled the session id is attached to the every URL.
But it could that you will need to manually add PHPSESSID to your links.
于 2013-06-11T06:29:25.117 に答える