web-dev-qa-db-ja.com

Webサイトをlocalhostに移動した後にスローされたキャッチされない例外

私のウェブサイトはサーバー上で正しく動作します。データベースとpublic_htmlからバックアップを取り、webstieのコピーをlocalhostに作成しました。

データベースをインポートしましたが、エラーが報告されました。cache_viewsテーブルの内容に問題があるため、このテーブルを空にし、データベースを正常にインポートしました。 public_htmlを古いものに置き換え、settings.phpを設定しました。しかし、それは動作しません、それはこのエラーを報告します:

例外の処理中にスローされる追加のキャッチされない例外

元の

PDOException: SQLSTATE[HY000]: General error: 2006 MySQL server has gone away: SELECT s.lid, t.translation, s.version FROM {locales_source} s LEFT JOIN {locales_target} t ON s.lid = t.lid AND t.language = :language WHERE s.source = :source AND s.context = :context AND s.textgroup = 'default'; Array ( [:language] => fa [:source] => Makes the view results available as a context for use in Panels and other applications. [:context] => ) in locale() (line 684 of C:\xampp\htdocs\test\modules\locale\locale.module).

追加:

PDOException: SQLSTATE[HY000]: General error: 2006 MySQL server has gone away: INSERT INTO {watchdog} (uid, type, message, variables, severity, link, location, referer, hostname, timestamp) VALUES (:db_insert_placeholder_0, :db_insert_placeholder_1, :db_insert_placeholder_2, :db_insert_placeholder_3, :db_insert_placeholder_4, :db_insert_placeholder_5, :db_insert_placeholder_6, :db_insert_placeholder_7, :db_insert_placeholder_8, :db_insert_placeholder_9); Array ( [:db_insert_placeholder_0] => 0 [:db_insert_placeholder_1] => php [:db_insert_placeholder_2] => %type: !message in %function (line %line of %file). [:db_insert_placeholder_3] => a:6:{s:5:"%type";s:12:"PDOException";s:8:"!message";s:455:"SQLSTATE[HY000]: General error: 2006 MySQL server has gone away: SELECT s.lid, t.translation, s.version FROM {locales_source} s LEFT JOIN {locales_target} t ON s.lid = t.lid AND t.language = :language WHERE s.source = :source AND s.context = :context AND s.textgroup = 'default'; Array ( [:language] => fa [:source] => Makes the view results available as a context for use in Panels and other applications. [:context] => ) ";s:9:"%function";s:8:"locale()";s:5:"%file";s:52:"C:\xampp\htdocs\test\modules\locale\locale.module";s:5:"%line";i:684;s:14:"severity_level";i:3;} [:db_insert_placeholder_4] => 3 [:db_insert_placeholder_5] => [:db_insert_placeholder_6] => h t t p://localhost:81/test/ [:db_insert_placeholder_7] => [:db_insert_placeholder_8] => 127.0.0.1 [:db_insert_placeholder_9] => 1389935326 ) in dblog_watchdog() (line 154 of C:\xampp\htdocs\test\modules\dblog\dblog.module).
1
M a m a D

私はこの方法で問題を解決しました:ファイルphp.iniにmax_allowed_pa​​cket = 4Mを設定します

5
Mahipal Purohit