Cookies are blocked or not supported
WordPress Developer Resources 공식 원문에 표시된 Cookies are blocked or not supported 항목의 문구를 확인하는 문서입니다.
빠른 답변
- 확인 범위
- Cookies are blocked or not supported 문구가 표시되면 이 문서에서 WordPress Developer Resources 공식 원문의 같은 항목과 일치하는지 확인할 수 있습니다. 원문에 없는 원인이나 수정 방법은 이 문서만으로 단정하지 마십시오.
- 먼저 확인할 항목
- 현재 화면 또는 로그에서 `Cookies are blocked or not supported` 문구를 확인합니다.
- 적용 범위
- 화면 또는 로그에 같은 오류 메시지·상태명이 표시된 경우
- 출처 확인일
- 2026-08-08
- 최종 검토
- 2026-08-08
- 정정 이력
- 2026-07-29 이후 기록 없음
- 관련 기술
이 문서의 범위
현재 증상
- 애플리케이션 오류 메시지
먼저 확인할 항목
현재 화면 또는 로그에서 `Cookies are blocked or not supported` 문구를 확인합니다.
수집 원문의 발췌문과 현재 문구를 비교합니다.
피해야 할 조치
주의
- 이 문서는 원문 문구의 일치만 확인합니다. 원문에 없는 원인이나 변경 절차를 단정하지 않습니다.
오류 메시지·상태명 확인 범위
확인 범위
이 문서는 화면 또는 로그에 표시된 Cookies are blocked or not supported 문구가 WordPress Developer Resources 공식 원문의 항목과 일치하는지 확인합니다.
원문 발췌
Logging In – Advanced Administration Handbook | Developer.WordPress.org Logging In In this article Table of Contents Accessing the Login Page Login Form Fields Login Cookies Cookie Configuration Troubleshooting Login Issues “Cookies are blocked or not supported” Login Redirect Loop “Too many redirects” Resetting Your Password Standard Password Recovery Technical Password Reset Methods Additional Resources ↑ Back to top This guide covers WordPress authentication – accessing your site, managing login sessions, and resetting passwords. Accessing the Login Page The WordPress login page is located at wp-login.php in your site’s root directory: https://example.com/wp-login.php (새 창에서 열림) Visiting /wp-admin/ while logged out redirects to the login page automatically. Login Form Fields Username or Email Address: Enter either your username or the email associated with your account Password: Your account password (case-sensitive) Remember Me: Keeps you logged in for 14 days instead of the default session length Login Cookies WordPress uses cookies to manage authentication. Understanding these helps with troubleshooting and security configuration. Cookie Purpose wordpress_[hash] Authentication cookie (for insecure/non-HTTPS logins) wordpress_logged_in_[hash] Indicates logged-in status to the frontend wordpress_sec_[hash] Secure authentication cookie (for HTTPS logins) Note: The wordpress_sec_[hash] cookie is used when you log in over a secure connection (HTTPS), which is strongly recommended for all sites. Non-secure logins (HTTP) are vulnerable to credential theft and should be avoided. Default expiration: 2 days (48 hours). When Remember Me is checked, cookies persist for 14 days. When WordPress needs to check an authentication cookie, it uses wp_validate_auth_cookie(). The function validates the cookie, checks whether it has expired, verifies the cookie hash, and returns the user ID when the cookie is valid. Cookie Configuration Changing cookie expiration requires the auth_cookie_expiration filter. Add to your theme’s functions.php or a custom plugin: add_filter( 'auth_cookie_expiration', 'custom_cookie_expiration', 10, 3 ); function custom_cookie_expiration( $length, $user_id, $remember ) { if ( $remember ) { return 30 DAY_IN_SECONDS; // 30 days when "Remember Me" is checked } return 2 DAY_IN_SECONDS; // 2 days for standard login (default) } Cookie domain can be set in wp-config.php for subdomain sharing: define( 'COOKIE_DOMAIN', '.example.com' ); Troubleshooting Login Issues “Cookies are blocked or not supported” This error appears when WordPress cannot set the test cookie (wordpress_test_cookie) or authentication cookies: Browser settings: Ensure cookies are enabled for your site Plugin conflicts: Disable plugins temporaril
확인 절차
- 현재 화면 또는 로그에서
Cookies are blocked or not supported문구를 확인합니다. - 위 원문 발췌와 문구를 비교합니다.
- 문구가 일치하면 이 문서의 출처 링크에서 적용 환경과 원문 전체를 확인합니다.
주의
이 문서는 문구 식별 범위로 제한합니다. 출처가 직접 설명하지 않는 원인, 설정 변경, 권한 변경 또는 복구 절차를 이 문서만으로 실행하지 마십시오.
참고 자료
WordPress Developer Resources · 공식 자료 · 확인 범위: 공식 원문에 오류 문구와 해당 항목의 발췌문이 있습니다. · 확인일: 2026-08-08