# 常见问题
## 1,Incompatible argument type: Required type: \Magento\Framework\DB\AdapterInterface
![](https://box.kancloud.cn/7d9bbb09feec923afe9d6a317e7e5747_1862x466.png)
把
![](https://box.kancloud.cn/3152ac14b054ebdcac9cac51b3ff118f_1550x392.png)
改成
![](https://box.kancloud.cn/792987a33ff1aef38faa437ba65c2712_1368x322.png)
## 2,Fatal error: Allowed memory size of xxx
内存不足的话,需要修改php.ini配置文件
memory_limit 设为1024M
max_execution_time 设为360
![](https://box.kancloud.cn/65476f2dfae5df0080403c63bd990f82_668x822.png)
## 3,The file "xxx/pub/media/tmp/catalog/product/i/n/index2_26.jpg" doesn't exist or not a file
上传产品图片报错
在`php.ini`里面添加这个,
`upload_tmp_dir =pub/media/tmp`
就可以了
或者把产品删了重新添加
## 4,recv() failed (104: Connection reset by peer) while reading response header from upstream
~~~
sudo vim /etc/php/7.0/fpm/pool.d/www.conf
~~~
添加
~~~
request_terminate_timeout = 7200s
~~~
保存后 重启php7.0-fpm。
`request_terminate_timeout `:
表示每个到fastcgi的请求的超时时间,它的设计目的是为 在 php.ini 中的max_execution_time设置在某些特殊原因下不能终止 PHP 执行的情况。
于是,request_terminate_timeout 也就默默的成为限制 PHP 执行时间的另一个手段。
而request_terminate_timeout 和 max_execution_time 在一般情况下的关系是:
哪个值小,哪个起作用。。。
## 5,nginx 413 Request Entity Too Large
1,先排除`php.ini`的问题
打开`php.ini`,
把 `upload_max_filesize` 和 `post_max_size` 修改为20M,然后重启。
2,排除nginx的问题
打开`/etc/nginx/nginx.conf`
在`http{}`段中加入 `client_max_body_size 20m;` 20m为允许最大上传的大小。
保存后重启nginx
## 6,magento/product-community-edition 2.2.4 requires ext-bcmath * -> the requested PHP extension bcmath is missing from your system.
这是缺少bcmath扩展库,直接安装即可
~~~
sudo apt-get install php7.0-bcmath
~~~
根据php版本来安装。
`7.1`就是
~~~
sudo apt-get install php7.1-bcmath
~~~
`7.2`就是
~~~
sudo apt-get install php7.2-bcmath
~~~
## 7,后台列表页面一直转 不显示列表
这个是缺少js-translation.json文件的原因。
~~~
touch pub/static/adminhtml/Magento/backend/en_US/js-translation.json
~~~
这样创建一个同名文件就行了。
这个文件只有在deploy的时候 才自动生成。
## 8,前后台页面都是乱的,没样式,deploy了N遍也不行。
这个问题 群里也遇到过,绝大部分都是`deploy`的语言包不是你网站设置的语言包。
什么意思呢?
本教程安装的默认语言是美国英语,语言包名称是`en_US`。
所以我deploy的时候 后面都是加的`setup:static-content:deploy en_US`。
那么如果你安装的时候把默认语言选成英国英语了,英语英语的语言包名称是`en_GB`。
那你`deploy`N遍`en_US`都没用,要改成:
`bin/magento setup:static-content:deploy en_GB `。
也就是说要`deploy`英国英语语言包。
那么我怎么知道我默认语言的语言包是啥名字呢?
在后台可以查看:
Stores->Configuration->General->Locale Options->Locale.
![](https://box.kancloud.cn/0a3f2b064787845ab9ceee0db2735243_1594x858.png)
要对症下药!! 不要瞎`deploy`。
## 9,apache下页面无样式,deploy了N遍也不行
一般都是缺少pub/static/.htaccess的原因。
见
//bbs.mallol.cn/?thread-172.htm
## 10,Magento2页面登陆后不能正确地获取到登陆信息,但是有的页面却可以获取登陆的session等信息。
这个问题主要是页面缓存造成的,关闭页面缓存接口,在页面的layout中找到对应的xml配置文件,在block里加上cacheable=”false”即可解决。如:
~~~
<block class="Vendor\Module\Block\Something" cacheable="false"
name="something" template="Vendor_Module::something.phtml">
~~~
## 11,Magento2模块和主题路径
~~~
定制主题路径 : app/design/frontend/
定制模块路径 : app/code/
默认主题路径 : vendor/magento/theme-frontend-luma
默认模块路径 : vendor/magento/module-
可自定义, 如GreenTree
~~~
## 12,局域网内通过IP访问测试主机192.168.1.117会跳转到localhost域名, 解决办法如下:
~~~
登录Magento的后台,Stores > Configuration > General > Web,展开Base URLs
修改 Magento 的 Base URLs 为 192.168.1.117即可
也可以通过表core_config_data修改
在path列里寻找
At web/unsecure/base_url
web/Secure/base_url
修改为对应的URL即可
~~~
## 13,module和component的区别是什么?
~~~
module是component的一种,一个component可以是:
一个模块module(Magento2扩展/插件)
一个theme(magento2主题)
Language package(语言包)
~~~
## 14,Magento2页面出现空白, 或者出现错误
很多情况下是文件权限问题或者缓存问题
可以通过清除缓存(包括浏览器缓存),更改文件权限解决
也可以清楚var/general下的所有文件,然后clean:cache
在安装新的插件或者模块的时候一定要注意文件的读写权限问题,
权限设置不当会导致站点生成静态文件和缓存的时候出现有些文件生成失败
导致网页加载文件失败,从而导致插件或组件功能异常
注意文件的权限常常是导致出现错误的原因
## 15,(InvalidArgumentException): Required parameter 'theme_dir' was not passed
主题丢失。
你把某个主题手动删掉了,但是数据库里没删,还有旧的主题记录。
你需要找到`theme`表。
把那个主题记录找到并删除 就行了。
## 16,Something went wrong while saving this configuration: Area is already set
后台上传logo的时候 总是报这个错。
这是2.2.4的一个bug。听说2.2.5里修复了。
需要手动改下代码:
找到 `Magento\Email\Model\AbstractTemplate.php`。
用composer安装的一般在`vendor\magento\moduleemail\Model\AbstractTemplate.php`。
用github安装的一般在
`app\code\Magento\Email\Model\AbstractTemplate.php`
把
~~~
public function setForcedArea($templateId)
{
if ($this->area) {
throw new \LogicException(__('Area is already set'));
}
$this->area = $this->emailConfig->getTemplateArea($templateId);
return $this;
}
~~~
改成
~~~
public function setForcedArea($templateId)
{
if (!isset($this->area)) {
$this->area = $this->emailConfig->getTemplateArea($templateId);
}
return $this;
~~~
保存代码。
后台测试上传。应该就好了。
## 17,后台登录多次失败,总是提示`Your current session has been expired`
执行命令:
~~~
php bin/magento config:set admin/security/session_lifetime 86400
php bin/magento cache:flush
~~~
然后再尝试登录 应该就好了。
见
https://github.com/magento/magento2/issues/5309
## 18,打开产品编辑页面报错
> Notice: Undefined offset: 0 in /var/www/magento2/vendor/magento/module-configurable-product/Model/Product/Type/VariationMatrix.php on line 43
这个一般是可配置产品子产品属性的问题。
你应该是删除了super attribute的某个option,导致他的子产品找不到属性值 就报错了。
解决办法:
1,把$variationalAttributes变量打印出来
~~~
vim vendor/magento/module-configurable-product/Model/Product/Type/VariationMatrix.php
~~~
~~~
for ($attributeIndex = $attributesCount; $attributeIndex--;) {
$currentAttribute = $variationalAttributes[$attributeIndex];
$currentVariationValue = $currentVariation[$attributeIndex];
//add
if(!isset($currentAttribute['values'][$currentVariationValue])){
print_r($variationalAttributes);
var_dump($currentAttribute['values']);
die;
}
//end
$filledVariation[$currentAttribute['id']] = $currentAttribute['values'][$currentVariationValue];
}
~~~
找到values为空的属性id。
比如:
~~~
Array
(
[0] => Array
(
[id] => 153
[values] => Array
(
)
)
[1] => Array
(
[id] => 151
[values] => Array
(
[0] => Array
(
[value] => 32
[label] => 7460
[price] => Array
(
[value_index] => 32
[label] => 7460
[product_super_attribute_id] => 1362
[default_label] => 7460
[store_label] => 7460
[use_default_value] => 1
)
)
~~~
说明id为153的属性有问题。
2,`catalog_product_super_attribute`表删除有问题的属性
比如产品id为782,有问题的属性id为153.
那么就在`catalog_product_super_attribute`表里搜索`product_id`为782的记录。
把`attribute_id`为153的记录删掉就行了。
## 19,Exception\LocalizedException Key must not exceed 32 bytes
修改`app/etc/env.php`
查看下你的`key`是不是超过32个字符了,不能大于32个字符。超出了就改小点。
![](https://box.kancloud.cn/19da25d7bbe672666c8954ebb2a63953_808x120.png)
## 20,产品详情页面不显示面包屑导航
见
//bbs.mallol.cn/?thread-183.htm
## Area code is not set
![](https://box.kancloud.cn/773de8d7a097a4ddd3ed9dfc145f0bca_748x279.png)
检查下你调用的类。一般都是某个类代码有问题。
## 21,Varnish 503(Backend Fetch Failed后端获取失败)
如果Magento2缓存标签使用长度超过8192个字符,你可以看到HTTP 503(后台读取失败)在浏览器中的错误。这些错误可能显示如下:
~~~
Error 503 Backend fetch failed Backend fetch failed
Backend fetch failed
~~~
为了解决这个问题,修改varnish配置文件如下:
1.用 root 用户打开:
CentOS 6: /etc/sysconfig/varnish
CentOS 7: /etc/varnish/varnish.params
Ubuntu: /etc/default/varnish
2,搜索 `http_resp_hdr_len` 参数
3,如果参数不存在增加 `thread_pool_max`
4,设置 `http_resp_hdr_len`
示例:`-p http_resp_hdr_len=64000 \`
代码片段:
~~~
# DAEMON_OPTS is used by the init script.
DAEMON_OPTS="-a ${VARNISH_LISTEN_ADDRESS}:${VARNISH_LISTEN_PORT} \
-f ${VARNISH_VCL_CONF} \
-T ${VARNISH_ADMIN_LISTEN_ADDRESS}:${VARNISH_ADMIN_LISTEN_PORT} \
-p thread_pool_min=${VARNISH_MIN_THREADS} \
-p thread_pool_max=${VARNISH_MAX_THREADS} \
-p http_resp_hdr_len=65536 \
-p http_resp_size=98304 \
-p workspace_backend=98304 \
-S ${VARNISH_SECRET_FILE} \
-s ${VARNISH_STORAGE}"
~~~
https://devdocs.magento.com/guides/v2.2/config-guide/varnish/tshoot-varnish-503.html
## 22,unable to send mail
magento2发不了邮件 `unable to send mail`。
见
//bbs.mallol.cn/?thread-186.htm
## 23,后台可视化编辑器图片上传失败`File validation failed`
这是2.2.5的一个bug。
需要安装php fileinfo扩展
7.0版本这样安装:
~~~
sudo apt-get install php7.0-fileinfo
~~~
7.1版本这样安装:
~~~
sudo apt-get install php7.1-fileinfo
~~~
https://github.com/magento/magento2/issues/16531
## 24,后台登录不进去
登录后台报错:
'You did not sign in correctly or your account is temporarily disabled'
这个是你后台用户账号被锁住了,需要解锁,用下面这个命令:
~~~
php bin/magento admin:user:unlock admin
~~~
最后面的`admin`是你的登录用户名,自行修改即可。
如果上面的还不行的话,就再试下下面的办法:
M2后台登录用户名和密码都是默认有有效期的。到期后 就登录不了 提示要修改密码。
也有可能是密码不对。
1,先强制登录(临时修改下源码)
Go to this file path and \\vendor\\zendframework\\zend-crypt\\src\\Utils.php and echo $expected and $actual variable and check both are same or not if both variable are not match then change line no 35
```
if (function\_exists('hash\_equals')) { return hash\_equals($expected, $actual); }
```
To
```
if (function\_exists('hash\_equals')) { return true; }
```
2,登陆进去后修改下Configuration
```
Configuration->ADVANCED->Admin->Security
```
`Admin Account Sharing` 设为 yes
`Admin Session Lifetime (seconds)` 设为最大值 31536000
`Password Lifetime (days)` 设为空
**保存后,再还原之前改的源代码**
- 序言
- 全面解读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服务器的项目
- 后续之路