묻고답하기
첨부파일이 다운로드 되지 않고, 클릭을 하면, "잘못된 요청입니다" 에러만 뜹니다
2013.06.11 22:03
댓글 3
-
korea3d
2013.06.11 22:47
저도 초보자라서 잘 모르는데요.몇 가지 이유가 있을 수 있겠는데요.아래의 게시판 설정 부분에 다운로드 가능 그룹에 체크가 되어 있거나 xe 설치 경로 등이 잘 못 되었을 수도 있겠는데요.관리그룹준회원정회원그런데, 좀 빠르게 고치고 싶다면 그 게시판의 주소를 보여주면 더 좋을 것 같네요.지금 질문이 너무 단순하고 광범위 해서, 다른 사람들이 봐도 답변 드리기 곤란할 것 같아요. -
조인잡
2013.06.30 20:39
http://joinjobs.net/xe/jj_xetip/5678 입니다 -
조인잡
2014.01.06 19:10
file.Controller.php 파일이 아래처럼 바꿔야 되는군요.
function procFileImageResize() {
$source_src = Context::get('source_src');
$width = Context::get('width');
$height = Context::get('height');
$type = Context::get('type');
$output_src = Context::get('output_src');
if(!$source_src || !$width) return new Object(-1,'msg_invalid_request');
if(!$output_src){
$output_src = $source_src . '.resized' . strrchr($source_src,'.');
}
if(!$type) $type = 'ratio';
if(!$height) $height = $width-1;
if(FileHandler::createImageFile($source_src,$output_src,$width,$height,'','ratio')){
$output->info = getimagesize($output_src);
$output->src = $output_src;
}else{
return new Object(-1,'msg_invalid_request');
}
$this->add('resized_info',$output);
}
이것을
function procFileImageResize()
{
$file_srl = Context::get('file_srl');
$width = Context::get('width');
$height = Context::get('height');
if(!$file_srl || !$width)
{
return new Object(-1,'msg_invalid_request');
}
$oFileModel = getModel('file');
$fileInfo = $oFileModel->getFile($file_srl);
if(!$fileInfo || $fileInfo->direct_download != 'Y')
{
return new Object(-1,'msg_invalid_request');
}
$source_src = $fileInfo->uploaded_filename;
$output_src = $source_src . '.resized' . strrchr($source_src,'.');
$type = 'ratio';
if(!$height) $height = $width-1;
if(FileHandler::createImageFile($source_src,$output_src,$width,$height,'','ratio'))
{
$output->info = getimagesize($output_src);
$output->src = $output_src;
}
else
{
return new Object(-1,'msg_invalid_request');
}
$this->add('resized_info',$output);
}
바꾸니 되네