|
|
동네 사람들의 정담이 오고가는 대청마루입니다. 무슨 글이든 좋아요. |
.........
/xe/files/cache 폴더에 있는 모든 내용을 삭제한 후에,
관리 페이지에서 '캐쉬파일 재생성'을 누른 후에
파일 첨부를 해 보니 제대로 업로드가 되었습니다
---------
file모듈중 file.controller.php 의 23번째줄
function procFileUpload() {
// 기본적으로 필요한 변수 설정
$oFileModel = &getModel('file');
$editor_sequence = Context::get('editor_sequence');
$upload_target_srl = intval(Context::get('uploadTargetSrl')); ******
$module_srl = $this->module_srl;
$upload_target_srl 에 'null' 이 들어가 어떤서버(win2003 + apm_setup 6) 에서는 파일첨부가 안됩니다.
그래서 intval(Context::get('uploadTargetSrl'+ '+ ')) 처럼 강제로 숫자변환을 하니 정상처리가 되었습니다.
post로 넘길때 null (이 null은 널값이 아니고 TEXT 로 "null"입니다. 로 넘어 오는가봅니다.
-----------
최신댓글