빌더에서 이미지 업로드 시 업로드가 되지않습니다.(무반응)

빌더에서 이미지 업로드 시 업로드가 되지않습니다.(무반응)

QA

빌더에서 이미지 업로드 시 업로드가 되지않습니다.(무반응)

본문

빌더에서 이미지 업로드 시 업로드가 되지않습니다.(무반응)

 

폴더 권한도 data 에다가 705로 주었구요 (하위 폴더 포함) = 해결 안됨.

홈페이지 상단 로고는 폴더를 어떻게 찾아서 제가 직접 파일질라로 업로드 해서 변경 하였는데.

이상하게 빌더를 이용한 이미지 업로드는 전부 작동하지가 않습니다.

 

파일선택을 눌러서 이미지 업로드를 하면 선택된 파일 없음 부분에 이미지 이름이 떳다가.

확인을 눌러서 저장을 할려고 하면 다시 선택된 파일 없음이 떠있으며 홈페이지를 가면 변경이 되어 있지 않습니다. 어떻게 해야되나요,,, ㅠㅠ

이 질문에 댓글 쓰기 :

답변 2

보통 /data 의 폴더권한은 705 가 아닌 707 을 줍니다.

 

혹시 그 부분 때문일지도 모르겠습니다.

컴퍼니님 . 답변 감사합니다. data 하위 폴더 및 파일 전부 707을 주어도 해결이 안되네요.
제가 스마툴즈 빌더를 사용해서 사이트를 열었습니다만. 슬라이더 이름은 st_slider_img_1.jpg 로 저장 하면 뜨는것을 알아냈는데 폴더에 저장 시키는곳을 헤매고 있습니다. IMG 폴더 들에 한번씩 전부 넣어보고있는데 코드 올리면 아실수있을까요?

사용하시는 빌더 업로드 처리 부분을 보지 않는한 방법이 있겠나요?

파일 업로드 하시고 data / file / 해당게시판id폴더에 파일이 잘 들어가 있는지 확인해 보시죠.

그리고 페이지에서 이미지파일 경로가 제대로 되어 있는지도 확인해 보시구요.

<?php if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가?>


<?php
$st_slider_use = $ST->theme->get('st_slider_use');

if( $st_slider_use == 1 or (!is_mobile() and $st_slider_use==2) or (is_mobile() and $st_slider_use==3) ) {
$st_slider_count = $ST->theme->get('st_slider_count');
$st_slider_bg_color = $ST->theme->get('st_slider_bg_color');
?>

<style>
#st-body .carousel-main .carousel-inner { background-color: <?=$st_slider_bg_color? $st_slider_bg_color: ''?>; }
#st-body .carousel-main .item {
height: <?=$ST->theme->get('st_slider_height_pc')?>;
background-color: <?=$st_slider_bg_color? $st_slider_bg_color: ''?>;
}
@media (max-width: 767px) {
#st-body .carousel-main .item {
height: <?=$ST->theme->get('st_slider_height_m')?>;
padding-bottom: 50%;
}
}
@media (max-width: 480px) {
#st-body .carousel-main .item {
padding-bottom: 0;
}
}
<?php if( defined('_INDEX_') and !$ST->theme->get('st_layout_main') ) { // 메인 페이지 레이아웃이 컨테이너(.container) 없음 + 전체 폭 일 때, Navbar 와의 공간 제거?>
#st-body .carousel-wrapper { margin-top: -20px; }
<?php } ?>
</style>

<section class="carousel-wrapper">
<div id="carousel-main" class="carousel carousel-main slide" data-ride="carousel">
<ol class="carousel-indicators">
<?php for($i=0; $i<$st_slider_count; $i++) { ?>
<li data-target="#carousel-main" data-slide-to="<?=$i?>" class="<?=$i==0? 'active': ''?>"></li>
<?php } ?>
</ol>
<div class="carousel-inner" role="listbox">
<?php for($i=1; $i<=$st_slider_count; $i++) { ?>
<?php
$img_name = $ST->theme->get('st_slider_img_'.$i);
$background_image = ($img_name and file_exists($img_file = $ST->theme->get_file_path().'/'.$img_name))? 'background-image: url('.$ST->theme->get_file_url().'/'.$img_name.')': '';
if( !$background_image ) {
$st_slider_bg_img = $ST->theme->get('st_slider_bg_img');
if( $st_slider_bg_img )
$background_image = 'background-image: url('.$ST->theme->get_file_url().'/'.$st_slider_bg_img.'); background-repeat:repeat; -webkit-background-size:auto; -moz-background-size:auto; -o-background-size:auto; background-size:auto;';
}
?>
<div class="item<?=$i==1? ' active': ''?>" style="<?=$background_image?>">
<div class="carousel-caption">
<h3><?=$ST->theme->get('st_slider_title_'.$i)?></h3>
<p><?=$ST->theme->get('st_slider_desc_'.$i)?></p>
</div>
</div>
<?php } //endfor?>
</div>

<a class="left carousel-control" href="#carousel-main" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">이전</span>
</a>
<a class="right carousel-control" href="#carousel-main" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">다음</span>
</a>
</div>
</section>
<?php } ?>

답변을 작성하시기 전에 로그인 해주세요.
전체 13
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT