묻고답하기

* 다음양식에 맞게 입력해주세요.

① 계정(호스팅-서버관리) 회사 이름 : Hunschool.net


② php , mysql 버전 : MySQL 3.23.57


③ 제로보드 버젼(날짜 포함) :


④ 에러나는 주소와 에러 부분 소스(필수) :


⑤ 주로 쓰고 있는 스킨 이름이나 소스  :


⑥ 질문 내용 :  제로보드가 아닌데..물어 볼곳이 없어서 이곳에 올립니다.

제가 통합형 보드 PHP nuke를 설치할려구하는데요...  그 사용 설명 서에 보면
"When you have finished to edit
config.php file change to the /sql/ directory and there is a file called
"nuke.sql" this file contains the commands to build the database structure,
tables and the default data.

1) Create a database called, for example, nuke:

    mysqladmin create nuke
    
2) Now fill the databases with the tables in nuke.sql file:

    mysql nuke < nuke.sql

3) In order to use the ultramode.txt news file please be sure to chmod 666.
   This file is used to show news from your site in some old programs and
   frontends and is reserved to future use in PHP-Nuke. For backend use
   backend.php file instead."

라고 나와있습니다.  phpmysql에서 혹시 저 nuke 내용을 하나씩 다 처야 하는건가요?

Nuke 내용은  대략
"-- MySQL dump 8.22
--
-- Host: localhost    Database: nuke
---------------------------------------------------------
-- Server version        3.23.54

--
-- Table structure for table 'confirm'
--

CREATE TABLE confirm (
  confirm_id char(32) NOT NULL default '',
  session_id char(32) NOT NULL default '',
  code char(6) NOT NULL default '',
  PRIMARY KEY  (session_id,confirm_id)
) TYPE=MyISAM;

--
-- Dumping data for table 'confirm'
--



--
-- Table structure for table 'nuke_authors'
--

CREATE TABLE nuke_authors (
  aid varchar(25) NOT NULL default '',
  name varchar(50) default NULL,
  url varchar(255) NOT NULL default '',
  email varchar(255) NOT NULL default '',
  pwd varchar(40) default NULL,
  counter int(11) NOT NULL default '0',
  radminarticle tinyint(2) NOT NULL default '0',
  radmintopic tinyint(2) NOT NULL default '0',
  radminuser tinyint(2) NOT NULL default '0',
  radminsurvey tinyint(2) NOT NULL default '0',
  radminsection tinyint(2) NOT NULL default '0',
  radminlink tinyint(2) NOT NULL default '0',
  radminephem tinyint(2) NOT NULL default '0',
  radminfaq tinyint(2) NOT NULL default '0',
  radmindownload tinyint(2) NOT NULL default '0',
  radminreviews tinyint(2) NOT NULL default '0',
  radminnewsletter tinyint(2) NOT NULL default '0',
  radminforum tinyint(2) NOT NULL default '0',
  radmincontent tinyint(2) NOT NULL default '+ '+ '0',
  radminency tinyint(2) NOT NULL default '0',
  radminsuper tinyint(2) NOT NULL default '1',
  admlanguage varchar(30) NOT NULL default '',
  PRIMARY KEY  (aid),
  KEY aid (aid)
) TYPE=MyISAM;

--
-- Dumping data for table 'nuke_authors'
--



--
-- Table structure for table 'nuke_autonews'
--

" 이렇게 되있구 엄청깁니다... 혹시 하나씩 저 설명되로 만들어라는건가요?... 아니면 임포트 할수 있는건가요?

(아니면 제가 잘못 해석한건가요..)

그리고 임포트를 하였을경우 에러가 납니다.

"오류

SQL 질의 :  

--
------------------------------------------------------- --
--
--
CREATE TABLE confirm(

confirm_id char( 32 ) NOT NULL default '',
session_id char( 32 ) NOT NULL default '',
code char( 6 ) NOT NULL default '',
PRIMARY KEY ( session_id, confirm_id )
) TYPE = MYISAM

MySQL 메시지:


#1064 - You have an error in your SQL syntax near '---------------------------------------------------------
--
--

CREATE TABLE co' at line 2
"


어떻게 해야 합니까? 꼭 답변좀 주세요 ^^