xe 에서는 기본적으로 관리자로 로그인 한 경우 게시물내의 embed 태그가 실행되지 않도록 설정되어있다
물론 보안상 문제이지만, 이런 위험을 감수하고라도 해결하려고 한다면,
/xe/config/func.inc.php 파일에서
line 957 ~ 960 쯤에 걸쳐 $security_msg 와 $content 변수를 모두 주석처리합니다
1 | // 관리자 보안모드 해제 |
2 | //$security_msg = "<div style='border: 1px solid #DDD; background: #FAFAFA; text-align:center; margin: 1em 0;'><p style='margin: 1em;'>".Context::getLang('security_warning_embed')."</p></div>"; |
3 | //$content = preg_replace('/<object[^>]+>?(.*?<\/object>)?/is', $security_msg, $content); |
4 | //$content = preg_replace('/<embed[^>]+>?(\s*<\/embed>)?/is', $security_msg, $content); |
5 | //$content = preg_replace('/<img[^>]+editor_component="multimedia_link"[^>]*>?(\s*<\/img>)?/is', $security_msg, $content); |
좋은 팁 감사합니다.