Editor [그누보드5] 에디터 사진 첨부시 절대경로를 상대경로로 변경하기
페이지 정보
본문
에디터의 이미지 첨부된 경우 이미지 경로가 http:// 또는 https:// 의 경로로 설정됩니다.
이것을 상대경로 / 의 형태로 저장하는 방법입니다.
1. 스마트에디터 SmartEditor2
그누보드5 / plugin / editor / smarteditor2 / photo_uploader / popup / php / index.php
$data_url = G5_DATA_URL.'/editor/'.$ym.'/';
를 아래와 같이 변경
//$data_url = G5_DATA_URL.'/editor/'.$ym.'/';
$data_url = '/'.G5_DATA_DIR.'/editor/'.$ym.'/'; // 해피정닷컴 수정 ( 에디터 업로드 이미지 경로를 / 형태로 변경하기 )
2. 채디터 Cheditor5
그누보드5 / plugin / editor / cheditor5 / imageUpload / config.php
$data_url = G5_DATA_URL.'/'.G5_EDITOR_DIR.'/'.$ym;
를 아래와 같이 변경
//$data_url = G5_DATA_URL.'/'.G5_EDITOR_DIR.'/'.$ym;
$data_url = '/'.G5_DATA_DIR.'/editor/'.$ym.'/'; // 해피정닷컴 수정 ( 에디터 업로드 이미지 경로를 / 형태로 변경하기 )
3. 스킨 write_update.skin.php 활용
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
sql_query(" update {$write_table} set wr_content=REPLACE(`wr_content`,'".G5_URL."/','/') where wr_id = '{$wr_id}' ") ;
참고자료
https://sir.kr/g5_tip/2538
https://sir.kr/g5_tip/7269
이것을 상대경로 / 의 형태로 저장하는 방법입니다.
1. 스마트에디터 SmartEditor2
그누보드5 / plugin / editor / smarteditor2 / photo_uploader / popup / php / index.php
$data_url = G5_DATA_URL.'/editor/'.$ym.'/';
를 아래와 같이 변경
//$data_url = G5_DATA_URL.'/editor/'.$ym.'/';
$data_url = '/'.G5_DATA_DIR.'/editor/'.$ym.'/'; // 해피정닷컴 수정 ( 에디터 업로드 이미지 경로를 / 형태로 변경하기 )
2. 채디터 Cheditor5
그누보드5 / plugin / editor / cheditor5 / imageUpload / config.php
$data_url = G5_DATA_URL.'/'.G5_EDITOR_DIR.'/'.$ym;
를 아래와 같이 변경
//$data_url = G5_DATA_URL.'/'.G5_EDITOR_DIR.'/'.$ym;
$data_url = '/'.G5_DATA_DIR.'/editor/'.$ym.'/'; // 해피정닷컴 수정 ( 에디터 업로드 이미지 경로를 / 형태로 변경하기 )
3. 스킨 write_update.skin.php 활용
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
sql_query(" update {$write_table} set wr_content=REPLACE(`wr_content`,'".G5_URL."/','/') where wr_id = '{$wr_id}' ") ;
참고자료
https://sir.kr/g5_tip/2538
https://sir.kr/g5_tip/7269
댓글목록
등록된 댓글이 없습니다.