2017-05-12 58 views
0

我在同一個共享主機上有兩個網站,名稱分別爲ecommercetorricelli和progettost,具有相同的用戶名。Laravel WRONG_STMT_PREPARE響應大小

當我嘗試登錄ecommercetorricelli,在配置改變DB設置後/ database.php中文件中獲取以下錯誤:

"QueryException in Connection.php line 647: Wrong COM_STMT_PREPARE response size. Received 7 (SQL: select * from utenti where email = [email protected] limit 1)"

檢查其他網站progettost後,這也給了,即使我沒有同樣的錯誤不做任何改變。

+0

你有清除緩存嗎? –

+0

,並且在清除緩存後也會更新作曲家 –

回答

0

我已經改變PDO驅動程序設置在

config/database.php

解決了這一嘗試。

'mysql' => [ 
    'driver' => 'mysql', 
/***** 
rest of the constrain remain same 
****/ 
    'options' => [PDO::ATTR_EMULATE_PREPARES => true,] 
],