묻고답하기
코어업데이트 후/ 외부페이지(xe말고 완전 외부)를 쓰던 도중 에러발생
2014.08.11 16:04
vb라던지, xe 레이아웃 내의 페이지가 아니라,
완전 독립된 페이지를 만들어서 쓰고 있습니다.
그런데 그 페이지에서 로그인자료 등은 이용해야겠기에,
define('XE', true);
define('XE_PATH', '../v/');
require_once(XE_PATH."config/config.inc.php");
$oContext = &Context::getInstance(); $oContext->init();
$logged_info = Context::get('logged_info');
이런 식으로 쓰고 있었습니다.
그런데 업데이트 후 갑자기
"JSON이 정의되지 않았습니다." 등 의 에러가
익스 구버전에서 뜨고 있습니다.
왜그런건지 감 오시는 분 있을까요
댓글 4
-
모이어
2014.08.11 16:21
-
모이어
2014.08.11 16:22
jquery 를 최신버전으로 불렀더니
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
line 0에서 아무 내용없는 "스크립트 오류"가 뜹니다ㅜㅜ
도와주세요
-
모이어
2014.08.11 16:29
jQuery 2.x
jQuery 2.x has the same API as jQuery 1.x, but does not support Internet Explorer 6, 7, or 8. All the notes in the jQuery 1.9 Upgrade Guideapply here as well. Since IE 8 is still relatively common, we recommend using the 1.x version unless you are certain no IE 6/7/8 users are visiting the site. Please read the 2.0 release notes carefully.
이것때문인거 같네요???!!!!
익스 6,7 지원끝 .
혹시 xe최신버전은 jquery 2.x 쓰나요?
-
모이어
2014.08.11 17:48
<?if ( eregi('MSIE 7', $_SERVER['HTTP_USER_AGENT']) || eregi('MSIE 8', $_SERVER['HTTP_USER_AGENT']) || eregi('MSIE 6', $_SERVER['HTTP_USER_AGENT']) ) {?><script type="text/javascript" src="/lib/jquery-1.8.1.min.js"></script><?}else{?><script type="text/javascript" src="/v/common/js/jquery.min.js"></script><?}?>위 구문으로 해결보았습니다.최신업그레이드 하신 분들 참고하세요.
jquery 관련인듯한데..