세션 캐시 리미터 파라미터 오류
common.php 에
session_cache_limiter 함수
https://github.com/gnuboard/gnuboard5/blob/c4c1e50f68f9d76fe5af8754a99a6c8327b673e8/common.php#L227C6-L227C26
https://www.php.net/manual/en/function.session-cache-limiter.php
session_cache_limiter('no-cache'); 가 되어야 합니다.
현재는 작동하고있지 않습니다.
이곳이 수정되면
854번째 아래 코드와 겹치게됩니다.
header('Expires: 0'); // rfc2616 - Section 14.21
header('Last-Modified: ' . $gmnow);
header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
header('Pragma: no-cache'); // HTTP/1.0
session_cache_limiter 함수
https://github.com/gnuboard/gnuboard5/blob/c4c1e50f68f9d76fe5af8754a99a6c8327b673e8/common.php#L227C6-L227C26
https://www.php.net/manual/en/function.session-cache-limiter.php
session_cache_limiter('no-cache'); 가 되어야 합니다.
현재는 작동하고있지 않습니다.
이곳이 수정되면
854번째 아래 코드와 겹치게됩니다.
header('Expires: 0'); // rfc2616 - Section 14.21
header('Last-Modified: ' . $gmnow);
header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
header('Pragma: no-cache'); // HTTP/1.0
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인