반응형
워드프레스를 어떠한 이유로 iframe 으로 불러서 사용하는경우가 있다.
하지만 login 을 하려해도 오류가 발생해서 되지 않는다.
Refused to display 'https://www.wordpress.com/wp-login.php' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
그럴때 해결방법은
By default WordPress sends an HTTP header to prevent iframe embedding on /wp_admin/ and /wp-login.php:
X-Frame-Options: SAMEORIGIN That's a security feature. If you want to remove this header remove the filters:
remove_action( 'login_init', 'send_frame_options_header' );
remove_action( 'admin_init', 'send_frame_options_header' );
참조주소 http://wordpress.stackexchange.com/questions/137545/custom-login-iframe-doesnt-work
반응형
'Story > php' 카테고리의 다른 글
영카트 이니시스 결제모듈연동시 카드사 포인트 사용하게 하는 방법 (0) | 2017.09.15 |
---|---|
php 에서 strtolower(), strtoupper() 사용시 한글 깨짐문제 (0) | 2016.10.06 |
Warning: Unexpected character in input: '\' (ASCII=92) state=1 오류문제 (0) | 2016.09.29 |
php등 프로그램으로 엑셀 다운로드시 열리지 않을때 (table 코딩으로 만든것) (0) | 2016.08.11 |
고도몰 모바일 상품리스트 갯수 (0) | 2016.07.06 |