영카트 [YC5] 영카트4를 영카트5로 이전하기 (1/3)
페이지 정보
본문
1. 영카트4 최종버전의 DB 구조 비교
공식 최종 배포판은 4.17.03 (2014.03.28) 입니다.
영카트4 / install / sql_youngcart4.sql 의 필드구조와 이전대상인 홈페이지의 디비구조를 비교하여 누락된 필드가 있는 경우 먼저 해당 위치에 추가
2. 영카트5 설치
기존 영카트4와 다른 위치에 설치합니다.
통상 yc5 폴더에서 설치
3. 영카트5 설치후 관리자 로그인후 업그레이드 실행
3-1 yc4_import_run.php 의 내용에서 주석된 184~267줄의 내용을 활성화합니다.
쇼핑몰에서 content 별도 작업을 하지 않은 경우엔 185~203줄은 주석을 유지합니다.
3-2. yc4_import_run.php 424줄
분류의 카테고리에 스킨 폴더명 추가를 위해서, 미리 shop 스킨 폴더를 생성후 그것을 적어주는 것이 좋습니다.
basic 을 사용하면 업데이트할때 실수로 덮어쓰는 것을 방지하기 위해서
sql_query(" INSERT INTO {$g5['g5_shop_category_table']} SET $sql_common, ca_skin = 'list.10.skin.php' ");
를 아래와 같이 변경
sql_query(" INSERT INTO {$g5['g5_shop_category_table']} SET $sql_common, ca_skin = 'list.10.skin.php', ca_skin='스킨폴더', ca_mobile_skin_dir='스킨폴더' ");
3-3. 상품 데이타 이전을 위해서 쿼리 수정
https://www.happyjung.com/bbs/board.php?bo_table=lecture&wr_id=2196
3-4. 영카트5 / yc4_import.php 를 실행
4. 이전된 영카트5에 기존 영카트4 디자인 적용하기
5. 새로운 영카트5 쇼핑몰로 연결
[ 참고.1 ] 그누보드4 를 그누보드5 이전시 변경함수관련내용을 아래 링크에서 확인
https://www.happyjung.com/bbs/board.php?bo_table=lecture&wr_id=1640
[ 참고.2 ] 영카트5 스킨작업시 변경되는 함수
$g4[shop_path] → G5_SHOP_PATH ex. /home/www/shop
G5_SHOP_SKIN_PATH ex. /home/www/skin/shop/basic
G5_SHOP_URL ex. https://www.happyjung.com/shop
G5_SHOP_SKIN_URL ex. https://www.happyjung.com/skin/shop/basic
G5_MOBILE_URL ex. https://www.happyjung.com/mobile
G5_MOBILE_URL.'/'.G5_SKIN_DIR ex. https://www.happyjung.com/mobile/skin
G5_MOBILE_PATH ex. /home/www/mobile
G5_MOBILE_PATH.'/'.G5_SKIN_DIR ex. /home/www/mobile/skin
G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/shop ex. /home/www/mobile/skin/shop
G5_MSHOP_PATH ex. /home/www/mobile/shop
include("$g4[shop_path]/boxtodayview.inc.php"); → include(G5_SHOP_SKIN_PATH."/boxtodayview.skin.php");
yc4_banner → g5_shop_banner 또는 $g5['g5_shop_banner_table']
[ 참고.3 ] yc4 에는 있지만 yc5 에는 없는 필드
`it_gallery` tinyint(4) NOT NULL default '0', >> yc5에서 x
`it_opt1_subject` varchar(255) NOT NULL default '', >> it_1_subj
`it_opt2_subject` varchar(255) NOT NULL default '', >> it_2_subj
`it_opt3_subject` varchar(255) NOT NULL default '', >> it_3_subj
`it_opt4_subject` varchar(255) NOT NULL default '', >> it_4_subj
`it_opt5_subject` varchar(255) NOT NULL default '', >> it_5_subj
`it_opt6_subject` varchar(255) NOT NULL default '', >> it_6_subj
`it_opt7_subject` varchar(255) NOT NULL, >> it_7_subj
`it_opt8_subject` varchar(255) NOT NULL, >> it_8_subj
`it_opt1` text NOT NULL, >> it_1
`it_opt2` text NOT NULL, >> it_2
`it_opt3` text NOT NULL, >> it_3
`it_opt4` text NOT NULL, >> it_4
`it_opt5` text NOT NULL, >> it_5
`it_opt6` text NOT NULL, >> it_6
`it_opt7` varchar(255) NOT NULL, >> it_7
`it_opt8` varchar(255) NOT NULL, >> it_8
`it_explan_html` tinyint(4) NOT NULL default '0', >> x
`it_cust_amount` int(11) NOT NULL default '0', >> it_cust_price
`it_amount` int(11) NOT NULL default '0', >> it_price
`it_amount2` int(11) NOT NULL default '0', >> x
`it_amount3` int(11) NOT NULL default '0', >> x
공식 최종 배포판은 4.17.03 (2014.03.28) 입니다.
영카트4 / install / sql_youngcart4.sql 의 필드구조와 이전대상인 홈페이지의 디비구조를 비교하여 누락된 필드가 있는 경우 먼저 해당 위치에 추가
2. 영카트5 설치
기존 영카트4와 다른 위치에 설치합니다.
통상 yc5 폴더에서 설치
3. 영카트5 설치후 관리자 로그인후 업그레이드 실행
3-1 yc4_import_run.php 의 내용에서 주석된 184~267줄의 내용을 활성화합니다.
쇼핑몰에서 content 별도 작업을 하지 않은 경우엔 185~203줄은 주석을 유지합니다.
3-2. yc4_import_run.php 424줄
분류의 카테고리에 스킨 폴더명 추가를 위해서, 미리 shop 스킨 폴더를 생성후 그것을 적어주는 것이 좋습니다.
basic 을 사용하면 업데이트할때 실수로 덮어쓰는 것을 방지하기 위해서
sql_query(" INSERT INTO {$g5['g5_shop_category_table']} SET $sql_common, ca_skin = 'list.10.skin.php' ");
를 아래와 같이 변경
sql_query(" INSERT INTO {$g5['g5_shop_category_table']} SET $sql_common, ca_skin = 'list.10.skin.php', ca_skin='스킨폴더', ca_mobile_skin_dir='스킨폴더' ");
3-3. 상품 데이타 이전을 위해서 쿼리 수정
https://www.happyjung.com/bbs/board.php?bo_table=lecture&wr_id=2196
3-4. 영카트5 / yc4_import.php 를 실행
4. 이전된 영카트5에 기존 영카트4 디자인 적용하기
5. 새로운 영카트5 쇼핑몰로 연결
[ 참고.1 ] 그누보드4 를 그누보드5 이전시 변경함수관련내용을 아래 링크에서 확인
https://www.happyjung.com/bbs/board.php?bo_table=lecture&wr_id=1640
[ 참고.2 ] 영카트5 스킨작업시 변경되는 함수
$g4[shop_path] → G5_SHOP_PATH ex. /home/www/shop
G5_SHOP_SKIN_PATH ex. /home/www/skin/shop/basic
G5_SHOP_URL ex. https://www.happyjung.com/shop
G5_SHOP_SKIN_URL ex. https://www.happyjung.com/skin/shop/basic
G5_MOBILE_URL ex. https://www.happyjung.com/mobile
G5_MOBILE_URL.'/'.G5_SKIN_DIR ex. https://www.happyjung.com/mobile/skin
G5_MOBILE_PATH ex. /home/www/mobile
G5_MOBILE_PATH.'/'.G5_SKIN_DIR ex. /home/www/mobile/skin
G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/shop ex. /home/www/mobile/skin/shop
G5_MSHOP_PATH ex. /home/www/mobile/shop
include("$g4[shop_path]/boxtodayview.inc.php"); → include(G5_SHOP_SKIN_PATH."/boxtodayview.skin.php");
yc4_banner → g5_shop_banner 또는 $g5['g5_shop_banner_table']
[ 참고.3 ] yc4 에는 있지만 yc5 에는 없는 필드
`it_gallery` tinyint(4) NOT NULL default '0', >> yc5에서 x
`it_opt1_subject` varchar(255) NOT NULL default '', >> it_1_subj
`it_opt2_subject` varchar(255) NOT NULL default '', >> it_2_subj
`it_opt3_subject` varchar(255) NOT NULL default '', >> it_3_subj
`it_opt4_subject` varchar(255) NOT NULL default '', >> it_4_subj
`it_opt5_subject` varchar(255) NOT NULL default '', >> it_5_subj
`it_opt6_subject` varchar(255) NOT NULL default '', >> it_6_subj
`it_opt7_subject` varchar(255) NOT NULL, >> it_7_subj
`it_opt8_subject` varchar(255) NOT NULL, >> it_8_subj
`it_opt1` text NOT NULL, >> it_1
`it_opt2` text NOT NULL, >> it_2
`it_opt3` text NOT NULL, >> it_3
`it_opt4` text NOT NULL, >> it_4
`it_opt5` text NOT NULL, >> it_5
`it_opt6` text NOT NULL, >> it_6
`it_opt7` varchar(255) NOT NULL, >> it_7
`it_opt8` varchar(255) NOT NULL, >> it_8
`it_explan_html` tinyint(4) NOT NULL default '0', >> x
`it_cust_amount` int(11) NOT NULL default '0', >> it_cust_price
`it_amount` int(11) NOT NULL default '0', >> it_price
`it_amount2` int(11) NOT NULL default '0', >> x
`it_amount3` int(11) NOT NULL default '0', >> x
댓글목록
등록된 댓글이 없습니다.