Wrong COM_STMT_PREPARE response size. Received 7. LARAVEL ERROR(错误的 COM_STMT_PREPARE 响应大小.收到 7. LARAVEL 错误)
问题描述
我有一个使用 laravel 开发的博客.在我的本地 PC 中,一切正常.但是当我将它上传到实时共享托管服务器时,它会引发如下错误:MySqlConnector.php 第 124 行中的
ErrorException:错误的 COM_STMT_PREPARE 响应大小.收到 7
我的服务器配置如下
<块引用>- 服务器:MariaDB
- 服务器版本:10.1.20-MariaDB - MariaDB 服务器
- PHP 5.6
我找不到任何解决方案.任何帮助将不胜感激.
我也遇到了同样的问题.我的网络托管服务提供商是 000webhost.只需在数据库配置文件 (config/database.php) 中将此 PDO 属性 PDO::ATTR_EMULATE_PREPARES
设置为 true,它应该可以正常工作.
例如:
'mysql' =>['司机' =>'mysql','主机' =>env('DB_HOST', 'localhost'),//.......'选项' =>[PDO::ATTR_EMULATE_PREPARES =>真的,]],
此外,如果您已缓存配置或在生产环境中运行,您可能需要运行 php artisan config:cache
.
I have a blog that is developed using laravel. In my local PC, everything is okay. But when I upload it in live shared hosting server it throws error like below:
ErrorException in MySqlConnector.php line 124:
Wrong COM_STMT_PREPARE response size. Received 7
My server configuration is given below
- Server: MariaDB
- Server version: 10.1.20-MariaDB - MariaDB Server
- PHP 5.6
I could not find any solution. Any help would be greatly appreciated.
I also faced the same problem. My web host provider was 000webhost. Just set this PDO attribute PDO::ATTR_EMULATE_PREPARES
to true in your database config file (config/database.php) and it should work fine.
Eg:
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
//.......
'options' => [PDO::ATTR_EMULATE_PREPARES => true,]
],
Additionally, you may need to run php artisan config:cache
if you have cached your configuration or if running in production environment.
这篇关于错误的 COM_STMT_PREPARE 响应大小.收到 7. LARAVEL 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误的 COM_STMT_PREPARE 响应大小.收到 7. LARAVEL 错误


- Laravel 仓库 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01