01. 스마트 에디터
/plugin/editor/smarteditor2/photo_uploader/popup/php/index.php
위 파일을 열어서
$data_url = G5_DATA_URL.'/editor/'.$ym.'/';
//변경전
//변경전
$data_url = '/'.G5_DATA_DIR.'/editor/'.$ym.'/';
//변경후
위 처럼 수정하면 해결할수 있다.
//변경후
위 처럼 수정하면 해결할수 있다.
02. 채디터 Cheditor5
/plugin/editor/cheditor5/imageUpload/config.php
위 파일을 열어서
위 파일을 열어서
$data_url = G5_DATA_URL.'/'.G5_EDITOR_DIR.'/'.$ym;
//변경전
$data_url = '/'.G5_DATA_DIR.'/editor/'.$ym.'/';
//변경후
위 경우 신규 이미지 업로드 경우만 반여이 된다.
위 경우 신규 이미지 업로드 경우만 반여이 된다.
lib/common.lib.php 의 conv_content 함수를 수정하는 방법도 가능하다.
이는 https://a.com 을 https://b.com 으로 도메인을 변경하는 편법이다.
// 변경전
function conv_content($content, $html, $filter=true)
{
global $config, $board;
// 변경후
function conv_content($content, $html, $filter=true)
{
global $config, $board;
$content = str_replace('기존도메인', '현재도메인', $content);
위 방법으로 처리할 경우 미비하지만 속도가 느릴것으로 생각된다.
위 방법으로 처리할 경우 미비하지만 속도가 느릴것으로 생각된다.