영카트 에디터로 업로드된 이미지 도메인 및 SSL 설치 후 짤림
본문
안녕하세요!
절대경로로 해놓은건 다 문제 없는데
도메인이랑 SSL 설치 전에 영카트로 업로드한 이미지들은 적용 전 주소로 불러와져서 다 잘리는 현상이 나는데 이걸 변경할 방법이 있을까요??
불러와지는 링크
http://링크(전)/data/editor/2402/21e8fc31defbdf1222c4089ae500af42_1707113144_7371.jpg
불러오고싶은 링크
https://링크(현)/data/editor/2402/21e8fc31defbdf1222c4089ae500af42_1707113144_7371.jpg
답변 2
다음 코드를 /adm/shop_admin/item_list.php 5행쯤에 넣어서 페이지를 한 번 열어본 다음 삭제하세요
$http_url ='http://링크(전)';
$https_url ='https://링크(현)';
//--상품설명
sql_query("update {$g5['g5_shop_item_table']} set it_explan=REPLACE(it_explan,'$http_url','$https_url') ", true);
sql_query("update {$g5['g5_shop_item_table']} set it_mobile_explan=REPLACE(it_mobile_explan,'$http_url','$https_url')", true);
//상품상단 내용/하단 내용, 모바일 상품상단내용/하단내용을 별도로 넣은 것이 없다면
//다음 코드 부터는 모두 생략하세요
//-- 상품상단내용/하단내용
sql_query("update {$g5['g5_shop_item_table']} set it_head_html=REPLACE(it_head_html,'$http_url','$https_url')", true);
sql_query("update {$g5['g5_shop_item_table']} set it_tail_html=REPLACE(it_tail_html,'$http_url','$https_url')", true);
//--- 모바일 상품상단내용/하단내용
sql_query("update {$g5['g5_shop_item_table']} set it_mobile_head_html=REPLACE(it_mobile_head_html,'$http_url','$https_url')", true);
sql_query("update {$g5['g5_shop_item_table']} set it_mobile_tail_html=REPLACE(it_mobile_tail_html,'$http_url','$https_url')", true);
==================