채택완료

최신글 질문드립니다..

2020-12-18 (금) 22:38:14 2,246

안녕하세요

https://sir.kr/g5_skin/21691?sca=%EC%B5%9C%EC%8B%A0%EA%B8%80&sfl=wr_name%2C1&stx=%EB%B2%8C%EC%9D%B4%EB%89%A8

해당 스킨 사용중인데요

여러게시판을 모아서 최신글로 보여주는건데

갤러리 게시판으로 사용중인데

최신글 4개중

1개만 사진이 나오고 나머지 3개는 no image가 떠버리네요

<?php echo latest_all('theme/pic_block', '최신글', 4, 10 ,array('notice','review')); ?>

이렇게 사용중이며

캐시삭제하고 다해봐도 안나오네요 ㅠ

캐시도 아니고 섬네일 부분 문제도 아닌것 같은데

너무 어렵습니다. ㅜ 고수님들의 도움 부탁드립니다...

lib 소스는 아래와 같습니다.

Copy
<?php
if (!defined('_GNUBOARD_')) exit;

// 최신글 추출
// $cache_time 캐시 갱신시간
// 전체게시물 최신글 추출 by 벌이뉨 2018.05.23 
function latest_all($skin_dir='', $subject='', $rows=10, $subject_len=40, $sub_table='', $cache_time=1, $options='')
{
    global $g5;

    if (!$skin_dir) $skin_dir = 'basic';
    if(!$options) $options_cache = 'basic'; else $options_cache = $options;
    $options_cache = str_replace(array(" ","'"), array("",""), $options_cache);

    $not_in = ""; 
    if($sub_table!=''){
        foreach ($sub_table as $key => $val) {
            $not_in .= "'$val',";
            $not_cache .= "{$val}";
        }
    }else{
        $not_cache = 'basic';
    }
    $not_in .= "'1'";    
    

    if(preg_match('#^theme/(.+)$#', $skin_dir, $match)) {
        if (G5_IS_MOBILE) {
            $latest_skin_path = G5_THEME_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            if(!is_dir($latest_skin_path))
                $latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            $latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
        } else {
            $latest_skin_path = G5_THEME_PATH.'/'.G5_SKIN_DIR.'/latest/'.$match[1];
            $latest_skin_url = str_replace(G5_PATH, G5_URL, $latest_skin_path);
        }
        $skin_dir = $match[1];
    } else {
        if(G5_IS_MOBILE) {
            $latest_skin_path = G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
            $latest_skin_url  = G5_MOBILE_URL.'/'.G5_SKIN_DIR.'/latest/'.$skin_dir;
        } else {
            $latest_skin_path = G5_SKIN_PATH.'/latest/'.$skin_dir;
            $latest_skin_url  = G5_SKIN_URL.'/latest/'.$skin_dir;
        }
    }

    $cache_fwrite = false;
    if(G5_USE_CACHE) {
        $cache_file = G5_DATA_PATH."/cache/latest-all-{$skin_dir}-{$rows}-{$subject_len}-{$not_cache}-{$options_cache}-serial.php";

        if(!file_exists($cache_file)) {
            $cache_fwrite = true;
        } else {
            if($cache_time > 0) {
                $filetime = filemtime($cache_file);
                if($filetime && $filetime < (G5_SERVER_TIME - 3600 * $cache_time)) {
                    @unlink($cache_file);
                    $cache_fwrite = true;
                }
            }
            
            if(!$cache_fwrite) {
                try{
                    $file_contents = file_get_contents($cache_file);
                    $file_ex = explode("\n\n", $file_contents);
                    $caches = unserialize(base64_decode($file_ex[1]));

                    $list = (is_array($caches) && isset($caches['list'])) ? $caches['list'] : array();
                    $bo_subject = (is_array($caches) && isset($caches['bo_subject'])) ? $caches['bo_subject'] : '';
                    $bo_table = (is_array($caches) && isset($caches['bo_table'])) ? $caches['bo_table'] : 'free';
                } catch(Exception $e){
                    $cache_fwrite = true;
                    $list = array();
                }
            }
        }
    }

    if(!G5_USE_CACHE || $cache_fwrite) {
        
        $list = array();
        $board = array();
        $bo_subject = $subject;
        $sql = " select * from {$g5['board_table']} where bo_table not in({$not_in})";
        $bo = sql_query($sql);
        
        
        $sql = " select * from (";
        $brow = sql_fetch_array($bo);
            
        $board[$brow['bo_table']] = $brow; 
        
        $sql_union .= "
                    select
                        *,
                        '{$brow['bo_subject']}' bo_subject,
                        '{$brow['bo_table']}' bo_table
                    from {$g5['write_prefix']}{$brow['bo_table']}";
        
        for ($i=0; $brow = sql_fetch_array($bo); $i++) {
            $board[$brow['bo_table']] = $brow;
            $sql_union .= "
                        union all
                        select 
                            *, 
                            '{$brow['bo_subject']}' bo_subject, 
                            '{$brow['bo_table']}' bo_table 
                        from {$g5['write_prefix']}{$brow['bo_table']}";
        }
        
        $sql .= "{$sql_union}) X where {$options} wr_is_comment = 0 and wr_20 = '1' order by wr_datetime desc limit 0, {$rows}";
        $result = sql_query($sql);
        
        for ($i=0; $row = sql_fetch_array($result); $i++) {
            try {
                unset($row['wr_password']);     //패스워드 저장 안함( 아예 삭제 )
            } catch (Exception $e) {
            }
            
            $row['wr_email'] = '';              //이메일 저장 안함
            if (strstr($row['wr_option'], 'secret')){           // 비밀글일 경우 내용, 링크, 파일 저장 안함
                $row['wr_content'] = $row['wr_link1'] = $row['wr_link2'] = '';
                $row['file'] = array('count'=>0);
            }
            
            if($i==0) $bo_table = $row['bo_table'];
                
            $list[$i] = get_list($row, $board[$row['bo_table']], $latest_skin_url, $subject_len);
        }

        if($cache_fwrite) {
            $handle = fopen($cache_file, 'w');
            $caches = array(
                'list' => $list,
                'bo_subject' => sql_escape_string($bo_subject),
                'bo_table' => sql_escape_string($bo_table),
                );
            $cache_content = "<?php if (!defined('_GNUBOARD_')) exit; ?>\n\n";
            $cache_content .= base64_encode(serialize($caches));  //serialize

            fwrite($handle, $cache_content);
            fclose($handle);

            @chmod($cache_file, 0640);
        }
    }

       
    ob_start();
    include $latest_skin_path.'/latest.skin.php';
    $content = ob_get_contents();
    ob_end_clean();
    
    return $content;
}
?>
|

답변 1개

채택된 답변
+20 포인트
2020-12-19 (토) 00:34:43

안나온다는 사진 경로 혹시 확인해보셨나요?

답변을 작성하려면 로그인이 필요합니다.