2011-01-22 6 views
0

이전 phpBB 포럼 데이터베이스를 새 서버로 옮기려고합니다. 그래서 .sql 파일을 삭제할 때 phpMyAdmin 패널을 통해 새로운 데이터베이스로 업로드하려고 시도했습니다. 내가받은 오류는 다음과 같습니다.ERROR : Unknown Punctuation String @ 7

<pre>Error 

There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem 

ERROR: Unknown Punctuation String @ 7 
STR: /> 
SQL: 

<br /> 
<b>Warning</b>: Cannot modify header information - headers already sent by (output started at webiste/includes/acp/acp_database.php:593) in <b>website/includes/functions.php</b> on line <b>3582</b><br /> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" dir="ltr"><head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><title>General Error</title><style type="text/css"> 
/* <![CDATA[ */ 
* { margin: 0; 


SQL query: 


Warning: Cannot modify header information - headers already sent by (output started at /homepages/24/d172572039/htdocs/GhostsofOnyx/includes/acp/acp_database.php:593) in /homepages/24/d172572039/htdocs/GhostsofOnyx/includes/functions.php on line 3582<code> 

파일을 완전히 업로드하려면 무엇을 변경해야합니까? 모든 도움에 감사드립니다!

답변

1

라인 7에서 당신은

* { margin: 0;

; 기호는 SQL 쿼리의 끝을 묘사합니다. 분명히,이 경우 쿼리의 끝인 경우 서버는 수행 할 작업을 알지 못하므로 오류가 발생합니다.

스크립트가 완료되면 phpMyAdmin이 알 수 있도록 새로운 구분 기호 (보통은 |)를 지정해야합니다.

관련 문제