SPAW Editor ie11 에서 에디터가 나타나지 않고 textarea 로 노출이된다.
이 문제를 해결하고자 구글링을 하다가
http://www.ziplineinteractive.com/blog/spaw-editor-not-loading-content-in-ie9-bug-fix/
이 문서를 찾았는대 아래 댓글중에서 아래 내용을 찾을수있었다.
이 util.class.php 파일을 /class 에 덮어씌워주면 해결이 된다.
출처 : http://geigenberger.wordpress.com/2013/11/01/spaw-2-von-solmetra-internet-explorer-11-fix/
JUST ADD BEFORE [ elseif (preg_match("#Gecko/([0-9]*)#i”,$browser,$build))]
IN [spaw2/classes/util.class.php]
elseif (preg_match(“/Trident[^;]*/i”,$browser)) //von Mattias 01-11-2013
{
$result = SPAW_AGENT_GECKO;
} //bis hier Mattias
ie10 에서는 이렇게 해도 에디터 영역이 disable 된 상태로 보이는경우가 있다.
이때는 다음과 같이 수정해준다.
meta
http-equiv
=
"X-UA-Compatible"
content
=
"IE=EmulateIE7"
> 실제 해보니 이건 빼도 동작은 한다.
2.The problem with this solution is that it is not a solution, it is just a work around. The solution to the problem lies in a small bit of code contained in the js/ie/editor.js (Line 113 in our version) file. You can fix this bug but replacing this code:
'Story > php' 카테고리의 다른 글
PHP, cURL, CURLOPT FOLLOWLOCATION and Open Basedir or Safe Mode (0) | 2014.09.24 |
---|---|
php ini 변경없이 session 시간 늘리기 (0) | 2014.04.30 |
php 5.3 변경사항 preg_replace , preg_replace_callback (0) | 2014.01.20 |
cms 결제 (Cash Management Service) (0) | 2014.01.16 |
php setcookie 쿠키 모바일 mobile 에서 종료시간 (0) | 2014.01.15 |