[첫화면으로]UseModWiki소스수정/쿠키인코딩

마지막으로 [b]

1. 쿠키 인코딩
1.1. 부작용
1.2. wiki.pl 수정
1.3. 추가 업데이트 내역
1.4. 사용자 의견

1. 쿠키 인코딩

Jof:UseModWiki소스수정/쿠키인코딩 참고.

사파리에서 로그인이 안 되는 문제 해결.

1.1. 부작용

모름

1.2. wiki.pl 수정

sub InitCookie {
    ...
    %UserCookie = $q->cookie($CookieName);
    # 다음 한 줄 추가
    $UserCookie{id} = DecodeUrl($UserCookie{id});
    $UserID = $UserCookie{'id'};
    ...
}

sub GetHttpHeader {
    ...
        $cookie = "$CookieName="
            . "expire&" . $SetCookie{'expire'}
            . "&rev&"   . $SetCookie{'rev'}
# 다음 라인 수정
#            . "&id&"    . $SetCookie{'id'}
            . "&id&"    . EncodeUrl($SetCookie{'id'})
            . "&randkey&" . $SetCookie{'randkey'}
            . ";";
   ...
}

1.3. 추가 업데이트 내역

1.4. 사용자 의견

이름:  
Homepage:
내용:
 

위키위키분류

마지막 편집일: 2012-1-30 1:08 am (변경사항 [d])
814 hits | Permalink | 변경내역 보기 [h] | 페이지 소스 보기