묻고답하기
글쓰기 파일 첨부 버튼 먹통일때?
2013.10.02 18:44
17.3.6 최신버전
php5.3.24 버전
mysql 5.0.8
윈도우 2008
---------------
1.7.3.6버전을 리눅스에서 돌렸을땐 문제없이 돌아 가는데 윈도우서버에 있는 사이트엔 글쓰기에서 파일첨부 버튼이 먹통이네요.
관련팁들을 찾아 보았으나 해결이 안되어 질문 남겨 봅니다.
스크립트 에러코드를 보면 swfupload.js 파일이 문제가 있다고 나오는데..
혹시 저와 같은 문제를 가지신분들 없으신지?
익스플로어 에서 f12 눌러 스크립트디버깅 해보면
"정의되지 않음 또는 null 참조인 'toString' 속성을 가져올 수 없습니다. "
와 같은 메시지가 나옵니다.
문제가 되는 소스 위치는 swfupload.js 파일 44라인 이라고 나오는데...
SWFUpload.prototype.initSWFUpload = function (settings) {
try {
this.customSettings = {}; // A container where developers can place their own settings associated with this instance.
this.settings = settings;
this.eventQueue = [];
this.movieName = "SWFUpload_" + SWFUpload.movieCount++;
this.movieElement = null;
// Setup global control tracking
SWFUpload.instances[this.movieName] = this;
// Load the settings. Load the Flash movie.
this.initSettings();
this.loadFlash();
this.displayDebugInfo();
} catch (ex) {
delete SWFUpload.instances[this.movieName];
throw ex;
}
};
위 붉은색 부분이라고 하는데...
php 5.3.24버전에선 안되네요.
php5.3.10버전에선 정상적입니다.
문제해결