2011-01-22 7 views
0

私の古いphpBBフォーラムデータベースを新しいサーバーに移動しようとしています。ですから、.sqlファイルをドローロードしたときに、phpMyAdminパネルを介して新しいデータベースにアップロードしようとしました。私が受け取ったエラーは次のとおりです。エラー:未知の句読点@ 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> 

ファイルを完全にアップロードするには何が必要ですか?すべての助けをありがとう! 7行目の

答えて

1

あなたは;シンボルがSQLクエリの終わりを描く

* { margin: 0;

を持っています。明らかに、この場合、それがクエリの終わりであれば、サーバは何をすべきか、したがってエラーを知らない。

phpMyAdminがスクリプトの完了を知るように、新しい区切り文字(私はしばしば|を使います)を指定する必要があります。

関連する問題