신디케이션 경로 오류 해결
This commit is contained in:
@ -32,5 +32,5 @@ delete_cache_latest($tmp_bo_table);
|
||||
rm_rf(G4_DATA_PATH.'/file/'.$tmp_bo_table);
|
||||
|
||||
// syndication ping
|
||||
include G4_BBS_PATH.'/syndi/include/include.adm.board_delete.inc.php';
|
||||
include G4_SYNDI_PATH.'/include/include.adm.board_delete.inc.php';
|
||||
?>
|
||||
@ -391,7 +391,7 @@ if ($all_fields) {
|
||||
delete_cache_latest($bo_table);
|
||||
|
||||
// syndication ping
|
||||
include G4_BBS_PATH.'/syndi/include/include.adm.board_form_update.php';
|
||||
include G4_SYNDI_PATH.'/include/include.adm.board_form_update.php';
|
||||
|
||||
goto_url("./board_form.php?w=u&bo_table={$bo_table}&{$qstr}");
|
||||
?>
|
||||
|
||||
@ -67,7 +67,7 @@ if ($w == '') {
|
||||
}
|
||||
|
||||
// syndication ping
|
||||
include G4_BBS_PATH.'/syndi/include/include.adm.boardgroup_form_update.php';
|
||||
include G4_SYNDI_PATH.'/include/include.adm.boardgroup_form_update.php';
|
||||
|
||||
goto_url('./boardgroup_form.php?w=u&gr_id='.$gr_id.'&'.$qstr);
|
||||
?>
|
||||
|
||||
@ -94,7 +94,7 @@ while ($row = sql_fetch_array($result))
|
||||
sql_query(" delete from {$g4['board_file_table']} where bo_table = '$bo_table' and wr_id = '{$row['wr_id']}' ");
|
||||
|
||||
// syndication ping
|
||||
include G4_BBS_PATH.'/syndi/include/include.bbs.delete.php';
|
||||
include G4_SYNDI_PATH.'/include/include.bbs.delete.php';
|
||||
|
||||
$count_write++;
|
||||
}
|
||||
|
||||
@ -107,7 +107,7 @@ for ($i=count($tmp_array)-1; $i>=0; $i--)
|
||||
sql_query(" delete from {$g4['board_file_table']} where bo_table = '$bo_table' and wr_id = '{$row['wr_id']}' ");
|
||||
|
||||
// syndication ping
|
||||
include G4_BBS_PATH.'/syndi/include/include.bbs.delete_all.php';
|
||||
include G4_SYNDI_PATH.'/include/include.bbs.delete_all.php';
|
||||
|
||||
$count_write++;
|
||||
}
|
||||
|
||||
@ -176,7 +176,7 @@ if ($sw == 'move')
|
||||
}
|
||||
|
||||
// syndication ping
|
||||
include G4_BBS_PATH.'/syndi/include/include.bbs.move_update.php';
|
||||
include G4_SYNDI_PATH.'/include/include.bbs.move_update.php';
|
||||
|
||||
$msg = '해당 게시물을 선택한 게시판으로 '.$act.' 하였습니다.';
|
||||
$opener_href = './board.php?bo_table='.$bo_table.'&page='.$page.'&'.$qstr;
|
||||
|
||||
@ -462,7 +462,7 @@ if ($w == '' || $w == 'r') {
|
||||
}
|
||||
|
||||
// syndication ping
|
||||
include G4_BBS_PATH.'/syndi/include/include.bbs.write_update.php';
|
||||
include G4_SYNDI_PATH.'/include/include.bbs.write_update.php';
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// 가변 파일 업로드
|
||||
|
||||
@ -48,6 +48,7 @@ define('G4_CKEDITOR_DIR', 'ckeditor');
|
||||
define('G4_MOBILE_DIR', 'mobile');
|
||||
define('G4_KCP_DIR', 'kcp');
|
||||
define('G4_OKNAME_DIR', 'okname');
|
||||
define('G4_SYNDI_DIR', 'syndi');
|
||||
|
||||
// URL 은 브라우저상에서의 경로 (도메인으로 부터의)
|
||||
if (G4_DOMAIN) {
|
||||
@ -77,6 +78,7 @@ define('G4_GCAPTCHA_URL', G4_PLUGIN_URL.'/'.G4_GCAPTCHA_DIR);
|
||||
define('G4_CKEDITOR_URL', G4_PLUGIN_URL.'/'.G4_CKEDITOR_DIR); // CKEDITOR 의 라이브러리 경로
|
||||
define('G4_KCP_URL', G4_PLUGIN_URL.'/'.G4_KCP_DIR);
|
||||
define('G4_OKNAME_URL', G4_PLUGIN_URL.'/'.G4_OKNAME_DIR);
|
||||
define('G4_SYNDI_URL', G4_PLUGIN_URL.'/'.G4_SYNDI_DIR);
|
||||
define('G4_MOBILE_URL', G4_URL.'/'.G4_MOBILE_DIR);
|
||||
|
||||
// PATH 는 서버상에서의 절대경로
|
||||
@ -91,6 +93,7 @@ define('G4_GCAPTCHA_PATH', G4_PLUGIN_PATH.'/'.G4_GCAPTCHA_DIR);
|
||||
define('G4_CKEDITOR_PATH', G4_PLUGIN_PATH.'/'.G4_CKEDITOR_DIR);
|
||||
define('G4_KCP_PATH', G4_PLUGIN_PATH.'/'.G4_KCP_DIR);
|
||||
define('G4_OKNAME_PATH', G4_PLUGIN_PATH.'/'.G4_OKNAME_DIR);
|
||||
define('G4_SYNDI_PATH', G4_PLUGIN_PATH.'/'.G4_SYNDI_DIR);
|
||||
define('G4_MOBILE_PATH', G4_PATH.'/'.G4_MOBILE_DIR);
|
||||
//==============================================================================
|
||||
|
||||
|
||||
@ -15,5 +15,5 @@ $GLOBALS['syndi_tag_year'] = '2010';
|
||||
$GLOBALS['syndi_homepage_title'] = $config['cf_title'];
|
||||
|
||||
// Syndication 출력 url (syndi_echo.php의 웹경로)
|
||||
$GLOBALS['syndi_echo_url'] = G4_BBS_URL.'/syndi/syndi_echo.php';
|
||||
$GLOBALS['syndi_echo_url'] = G4_SYNDI_URL.'/syndi_echo.php';
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user