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 错误
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01