<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[제로보드4 마이그레이션 사용시]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/70363</link>
		<description><![CDATA[<p>1. 정확한 제품 또는 플러그인 이름</p>

<p>제로보드4에서 마이그레이션 어플 사용후 kboard로 옮길 예정 </p>

<p>2. 상세 내용</p>

<p>제로보드4 sql 파일을 갖고 있는 상태인데 </p>

<p>설정이 달라서 db에 업로드는 못했습니다 ^^;;</p>

<p>제가 직접 수동으로 제로보드4 테이블을 db에 만들어 올린 후,</p>

<p>마이그레이션 툴을 사용해 댓글과 게시글을 옮기고자 합니다. </p>

<p> </p>

<p>코딩에 문외한이다 보니 제로보드4는 테이블 구성이 달라 애를 먹고 있습니다.</p>

<p>제로보드4 파일을 txt로 바꿔 제가 직접 csv 파일로 리스트를 만들고, </p>

<p>해당 csv파일을 db에 업로드 하려고 합니다. </p>

<p>기존의 제로보드4의  테이블 컬럼을 알려주실 수 있는지요... </p>

<p>마이그레이션 파일을 뒤져봤지만 정확한 컬럼 리스트 를 알수 없어서요. </p>

<p>고견 부탁드립니다. </p>

<p> </p>

<p>CREATE TABLE zetyx_board_comment_check ( <br />
    no int(11) not null auto_increment primary key,<br />
    parent int(11) not null ,<br />
    ismember int(20) not null ,<br />
    name varchar(20) null ,<br />
    password varchar(20) null ,<br />
    memo text null ,<br />
    ip varchar(15) null ,<br />
    reg_date int(13) null ,</p>

<p>    KEY parent (parent) <br />
) TYPE=MyISAM; </p>

<p>CREATE TABLE zetyx_board_andso ( <br />
    no int(20) unsigned not null auto_increment primary key,<br />
    division int(10) not null default '1' ,<br />
    headnum int(20) not null ,<br />
    arrangenum int(20) not null ,<br />
    depth int(10) unsigned not null ,<br />
    prev_no int(20) not null ,<br />
    next_no int(20) not null ,<br />
    father int(20) not null ,<br />
    child int(20) not null ,<br />
    ismember int(20) not null ,<br />
    islevel int(2) not null default '10' ,<br />
    memo text null ,<br />
    ip varchar(15) null ,<br />
    password varchar(20) null ,<br />
    name varchar(20) not null ,<br />
    homepage varchar(255) null ,<br />
    email varchar(255) null ,<br />
    subject varchar(250) not null ,<br />
    use_html char(1) null ,<br />
    reply_mail char(1) null ,<br />
    category int(11) not null default '1' ,<br />
    is_secret char(1) not null ,<br />
    sitelink1 varchar(255) null ,<br />
    sitelink2 varchar(255) null ,<br />
    file_name1 varchar(255) null ,<br />
    file_name2 varchar(255) null ,<br />
    s_file_name1 varchar(255) null ,<br />
    s_file_name2 varchar(255) null ,<br />
    download1 int(11) not null ,<br />
    download2 int(11) not null ,<br />
    reg_date int(13) not null ,<br />
    hit int(11) not null ,<br />
    vote int(11) not null ,<br />
    total_comment int(11) not null ,<br />
    x varchar(255) null ,<br />
    y varchar(255) null ,<br />
    re_num int(4) not null ,</p>

<p>    KEY headnum (division,headnum,arrangenum),<br />
    KEY depth (depth),<br />
    KEY father (father),<br />
    KEY prev_no (prev_no),<br />
    KEY next_no (next_no),<br />
    KEY name (name),<br />
    KEY reg_date (reg_date),<br />
    KEY hit (hit),<br />
    KEY vote (vote),<br />
    KEY download1 (download1),<br />
    KEY download2 (download2),<br />
    KEY category (category) <br />
) TYPE=MyISAM; </p>

<p>이걸 어떻게 컬럼리스트로 수정해야서 업뎃해야하는지 알려주세요. </p>

<p>제가 필요한건 게시글과 댓글 업로드입니다.</p>

<p> </p>

<p> </p>

<p>3. 확인 가능한 상세 페이지 주소</p>

<p> </p>

<p> </p>

<p>4. 수정한 코드 내역 (있다면)</p>

<p> </p>

<p> </p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[안녕하세요! WordPress 전문가로서 여러분의 질문에 대한 답변을 드리겠습니다.

먼저, 제로보드4의 테...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/70364</link>
			<description><![CDATA[<p>안녕하세요! WordPress 전문가로서 여러분의 질문에 대한 답변을 드리겠습니다.</p>
<p></p>
<p>먼저, 제로보드4의 테이블 구조를 CSV 파일로 변환하여 데이터베이스에 업로드하려는 상황이시군요. 주신 CREATE TABLE 쿼리를 보면 zetyx_board_comment_check와 zetyx_board_andso 테이블의 컬럼 구조를 확인할 수 있습니다.</p>
<p></p>
<p>zetyx_board_comment_check 테이블의 컬럼은 no, parent, ismember, name, password, memo, ip, reg_date로 구성되어 있습니다.</p>
<p></p>
<p>zetyx_board_andso 테이블의 컬럼은 no, division, headnum, arrangenum, depth, prev_no, next_no, father, child, ismember, islevel, memo, ip, password, name, homepage, email, subject, use_html, reply_mail, category, is_secret, sitelink1, sitelink2, file_name1, file_name2, s_file_name1, s_file_name2, download1, download2, reg_date, hit, vote, total_comment, x, y, re_num으로 구성되어 있습니다.</p>
<p></p>
<p>이 정보를 바탕으로 CSV 파일을 작성하고 데이터를 업로드하시면 됩니다. WordPress에서는 플러그인을 통해 데이터 마이그레이션을 지원해주는 경우가 많으니, 관련 플러그인을 활용하시면 더 편리하게 데이터를 이전할 수 있을 것입니다.</p>
<p></p>
<p>더 궁금한 점이 있으시면 언제든지 물어봐 주세요! 함께 해결해 나가는 즐거움을 느낄 수 있기를 바라며, 행복한 워드프레스 작업되시길 기원합니다! ????</p>]]></description>
			<author>스레드봇 AI</author>
			<pubDate>Tue, 03 Sep 2024 06:09:33 +0000</pubDate>
			<category>KBoard</category>
		</item>
			</channel>
</rss>