# 常见问题 二
## 25,Warning: Error while sending QUERY packet.
> Warning: Error while sending QUERY packet. PID=2527 in vendor/magento/zendframework1/library/Zend/Db/Statement/Pdo.php on line 228
这是数据库设置问题。
先找到数据库配置文件
```
vim /etc/mysql/my.cnf
```
搜索这2个参数
* max_allowed_packet
* wait_timeout
把这2个参数的值改大点,或者直接注释掉,使用默认值。
最后 再重启mysql
```
systemctl restart mysql
```
## 26,product/placeholder/swatch_image.jpg' does not exist.
> php bin/magento catalog:image:resize
File 'vendor/magento/module-catalog/view/base/web/images/product/placeholder/swatch_image.jpg' does not exist.
是没有产品图片,服务器里没有找到对应的图片。
需要把catalog_product_entity_media_gallery表里保存的图片链接删掉就行了。或者直接忽略掉这个图片路径。
### 2.2.x版本的修改方法
至于怎么知道哪个图片有问题,需要调试下代码
```
vim vendor/magento/module-catalog/Console/Command/ImagesResizeCommand.php
```
找到
```
foreach ($productImages as $image) {
$originalImageName = $image['filepath'];
```
改成
```
foreach ($productImages as $image) {
$originalImageName = $image['filepath'];
echo $originalImageName;
```
再执行`php bin/magento catalog:image:resize`
就会显示图片地址了
```
iggo@host:/home/www/magento2$ php bin/magento catalog:image:resize
/1/4/1418614449magento-ecommerce-square-logo_2.pngFile '/home/www/magento2/vendor/magento/module-catalog/view/base/web/images/product/placeholder/swatch_image.jpg' does not exist.
```
### 2.3.0版本的修改方法
v2.3.0版本代码在 `vendor/magento/module-media-storage/Console/Command/ImagesResizeCommand.php`
`Magento\MediaStorage\Service\ImageResize.php`
修改`Magento\MediaStorage\Service\ImageResize.php`
找到
```
public function resizeFromThemes(array $themes = null): \Generator
{
```
在里面添加如下代码
```
public function resizeFromThemes(array $themes = null): \Generator
{
$count = $this->productImage->getCountAllProductImages();
if (!$count) {
throw new NotFoundException(__('Cannot resize images - product images not found'));
}
$productImages = $this->productImage->getAllProductImages();
$viewImages = $this->getViewImages($themes ?? $this->getThemesInUse());
foreach ($productImages as $image) {
$originalImageName = $image['filepath'];
$originalImagePath = $this->mediaDirectory->getAbsolutePath(
$this->imageConfig->getMediaPath($originalImageName)
);
//文件不存在就忽略掉
if(!file_exists($originalImagePath)){
$count --;
continue;
}
foreach ($viewImages as $viewImage) {
$this->resize($viewImage, $originalImagePath, $originalImageName);
}
yield $originalImageName => $count;
}
```
## 27,MySQL创建触发器的时候报1419错误( 1419 - You do not have the SUPER privilege and binary logging is enabled )
解决方法:
第一步,用root用户登录:mysql -u root -p
第二步,设置参数`log_bin_trust_function_creators`为1:
```
set global log_bin_trust_function_creators = 1;
```
这样有个弊端就是重启服务器后,又还原了,又得重设一遍。
有个一劳永逸的方法就是直接修改my.cnf配置文件,添加
```
log_bin_trust_function_creators = 1;
```
再重启数据库,就好了
## 28,Errors during compilation: Magento\Backend\Model\View\Layout\GeneratorPool
> Incompatible argument type: Required type: \Magento\Framework\View\Layout\Condition\ConditionFactory. Actual type: \Magento\Framework\App\Config\ScopeConfigInterface; File: /vendor/magento/module-backend/Model/View/Layout/GeneratorPool.php
>
> Total Errors Count: 1
>
> [Magento\Framework\Validator\Exception] Error during compilation
解决方法:
直接删除`vendor/magento/module-backend/Model/View/Layout/GeneratorPool.php`
```
rm vendor/magento/module-backend/Model/View/Layout/GeneratorPool.php
```
见
https://magento.stackexchange.com/questions/222387/error-during-compilation-after-upgrade-in-magento-2-2-3
## 29,proc_get_status() has been disabled for security reasons
这是因为安全原因,将proc_get_status函数禁用了,可以通过编辑php的配置文件php.ini,搜索proc_get_status,将他从disable_functions中删除即可。
另外`proc_open`, `exec` 这几个函数也需要从disable_functions中删除
## 30, Attribute with ID “Manufacturer” does not exist
从2.2.5升级到2.2.7时,报这个错误。
解决办法:
1,先数据库里搜索有没有这个`Manufacturer`属性
```
select attribute_id from eav_attribute where attribute_code = 'manufacturer';
```
2,如果有这个属性的话,找到这个`attribute_id`,直接更新`catalog_eav_attribute`表
```
update catalog_eav_attribute set apply_to = 'simple,virtual,bundle,downloadable,configurable' where attribute_id = 你找到的attribute_id;
```
3,如果没有这个属性的话,就需要插入到`eav_attribute`表
```
INSERT INTO `eav_attribute` (`attribute_id`, `entity_type_id`, `attribute_code`, `attribute_model`, `backend_model`, `backend_type`, `backend_table`, `frontend_model`, `frontend_input`, `frontend_label`, `frontend_class`, `source_model`, `is_required`, `is_user_defined`, `default_value`, `is_unique`, `note`) VALUES (NULL, '4', 'manufacturer', NULL, NULL, 'varchar', NULL, NULL, 'text', 'Manufacturer', 'validate-length maximum-length-255', NULL, '0', '0', NULL, '0', NULL);
```
找到插入后的`attribute_id`,再插入到`catalog_eav_attribute`表
```
INSERT INTO catalog_eav_attribute (attribute_id, is_global, is_visible, is_searchable, is_filterable, is_comparable, is_visible_on_front, is_html_allowed_on_front, is_used_for_price_rules, is_filterable_in_search, used_in_product_listing, used_for_sort_by, apply_to, is_visible_in_advanced_search, position, is_wysiwyg_enabled, is_used_for_promo_rules, is_required_in_admin_store, is_used_in_grid, is_visible_in_grid, is_filterable_in_grid, search_weight, additional_data) VALUES (你找到的attribute_id, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, "simple, virtual, bundle, downloadable, configurable", 1, 0, 0, 0, 0, 0, 0, 0, 1, NULL);
```
https://github.com/magento/magento2/issues/18134
## 31, 2.3.0版本后台上传logo报错 A technical problem with the server created an error
> A technical problem with the server created an error. Try again to continue what you were doing. If the problem persists, try again later.
这是2.3.0的bug,在2.3.1里修复了。
我们需要修改`vendor/magento/module-theme/view/adminhtml/ui_component/design_config_form.xml`这个文件。
把`fileUploader`改成`imageUploader`
```
<fieldset name="header">
<settings>
<level>1</level>
<collapsible>true</collapsible>
<label translate="true">Header</label>
</settings>
<field name="header_logo_src" formElement="imageUploader">
<settings>
<label translate="true">Logo Image</label>
<componentType>imageUploader</componentType>
</settings>
```
## 32, 后台保存产品报错 Column 'entity_id' cannot be null
> magento2 SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'entity_id' cannot be null, query was: INSERT INTO `catalog_product_entity` VALUES (?, ?, ?, ?, ?, ?, ?, ?)
这是数据库`catalog_product_entity`表出问题了,要把`entity_id`字段改成自增(auto increment)。
因为有其他表都`relation`这个`entity_id`字段,需要把其他关联表的`relation`删掉,才能修改自增(auto increment)。
## 33, php7.2报错 Cannot adopt OID in UCD-SNMP-MIB
> Cannot adopt OID in UCD-SNMP-MIB: Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsValue
magento 2.3.x / php 7.2版本需要安装`snmp`扩展,以及安装`snmp-mibs-downloader`软件包
```
sudo apt-get install php7.2-snmp
sudo apt-get install snmp-mibs-downloader
```
## 34,composer安装报错 You must be using the interactive console to authenticate
> [Composer\Downloader\TransportException]
The 'https://repo.magento.com/packages.json' URL required authentication.
You must be using the interactive console to authenticate
这是身份验证密钥失效了,需要重新验证下。
在项目根目录,输入命令:
```
composer update
```
根据提示,输入Magento密钥即可
## 35,2.3.0里报错 Cannot process definition to array for type tinytext
升级到2.3.0后,执行`php bin/magento setup:upgrade`会报错
> Cannot process definition to array for type tinytext
这多半是因为你第三方插件里的表字段为`tinytext`类型,导致m2无法处理,需要把`tinytext`改成`text`类型。
那如何知道是哪个表哪个字段呢?
先打开文件
```
vim vendor/magento/framework/Setup/Declaration/Schema/Db/DefinitionAggregator.php
```
找到**fromDefinition()**,添加调试代码
```
public function fromDefinition(array $data)
{
$type = $data['type'];
if (!isset($this->definitionProcessors[$type])) {
echo "<pre>";
print_r($data); exit();
throw new \InvalidArgumentException(
sprintf("Cannot process definition to array for type %s", $type)
);
}
$definitionProcessor = $this->definitionProcessors[$type];
return $definitionProcessor->fromDefinition($data);
}
```
再执行`php bin/magento setup:upgrade` 就会出现具体的信息了
![](https://box.kancloud.cn/e1eedb3d53f03c3eccbe2d2cd784481c_558x336.png)
找到表和字段后 去数据库里修改下字段类型就ok了
## 36,v2.3.0里报错 Class Magento\\Email\\Model\\Source\\Variables does not exist
> Compilation was started.
Area configuration aggregation... 5/7 [====================>-------] 71% 25 secs 248.0 MiB
In ClassReader.php line 35:
Class Magento\Email\Model\Source\Variables does not exist
这是因为`Magento\Email\Model\Source\Variables`这个类在v2.3.0里已经废弃了,用`\Magento\Variable\Model\Source\Variables`取代了。
所以,在服务器里搜索含有`Magento\Email\Model\Source\Variables`的文件,修改成`Magento\Variable\Model\Source\Variables`就行
```
//grep 搜索
grep -irn 'Magento\\Email\\Model\\Source\\Variables' app
```
## 37,后台sitemap generation生成的sitemap.xml无法访问 404 not found
因为`nginx.conf.sample`里访问的根目录是`pub/`,如果你的`sitemap.xml`没有放在`pub/`下面,就访问不到。
所以需要在`Sitemap`编辑页面,改下`Path`就行。
![](https://box.kancloud.cn/906a3ecee7026eda1fb37d0ebda47a04_1052x355.png)
- 序言
- 全面解读Magento2
- Magento2简介
- Magento2特点
- Magento2目录结构
- Magento2语法讲解
- 运行原理剖析
- 开启Magento2之旅
- 安装Magnto2
- 购买阿里云服务器(Ubuntu系统)
- 安装和配置Nginx/PHP/PHP-FPM
- 配置Mysql并创建数据库
- 配置Nginx虚拟主机
- 安装和配置Magento2
- 导入演示数据
- 手把手教你创建git代码库
- 续外篇-购买AWS服务器
- 续外篇-Mac下安装LNMP
- 续外篇-安装phpmyadmin
- 如何升级php版本
- 使用Magento2
- 创建多网店多域名以及安装中文语言包
- 创建独立cms页面
- 创建分类和产品
- 创建产品属性
- 创建优惠券
- 导入产品csv
- 下单/发票/发货/退货
- M2常用命令
- 如何安装主题
- 如何安装插件
- 如何使用API
- 常见问题
- 常见问题 二
- 常见问题 三
- 常见问题 四
- 常见问题 五
- Magento2主题
- 主题框架详解
- Layout文件详解
- M2里的JS
- 主题实战
- 前期准备工作
- 完成首页
- 重写分类页面
- 锦囊妙计
- 产品详情页面讲解
- 购物车页面讲解
- 支付页面讲解
- 主题修改记录
- 关于主题的一些学员问答
- Magento2插件
- 插件框架详解
- XML配置说明
- 插件实战
- 准备工作
- 写代码
- 调试
- 难点解析
- 插件升级
- 插件修改记录
- 扩展阅读
- 如何创建cron任务和功能
- 发送邮件(带附件)
- 如何在代码里创建属性
- Magento2线上部署
- 基本流程
- 配置Redis
- 配置Varnish+SSL
- Varnish配置教程(2020年修订版)
- Paypal设置
- 一些优化
- Magento2 版本升级
- v2.3.0版本填坑指南
- v2.4.x升级指南
- 配置nginx pagespeed模块进行加速
- M1数据库迁移到M2指南
- 安装配置Elasticsearch
- Magento2常用工具
- 网站测速分析工具
- 在线创建插件模块
- M2后台可视化编辑器里的标签变量
- 遇到问题,我该怎么做
- 常用代码
- SEO在线分析工具
- 本地用xdebug远程调试mgtdev2服务器的项目
- 后续之路