|
最近客户反映安装完1.5.6.3和1.5.6.2后,后台上传图片报错 error_filetype.
我们检查后发现一个小bug,一下是修复方法
1、查找文件:admin/controller/catalog/download.php
位置:498行位置
找到并删除if (preg_match('/\<\?/i', $content)) {
用这行替换if (preg_match('/\<\?php/i', $content)) {
2、admin/controller/common/filemanager.php
位置:468,469行
找到这2行 if (preg_match('/\<\?/i', $content)) {
$json['error'] = $this->language->get('error_filetype');
使用下面2行替换
if (preg_match('/\<\?php/i', $content)) {
$json['error'] = $this->language->get('error_file_type');
}
3、admin/controller/sale/order.php
位置:2326
找到并删除 if (preg_match('/\<\?/i', $content)) {
用这行替换 if (preg_match('/\<\?php/i', $content)) {
4.catalog/controller/product/product.php
位置:756
找到并删除 if (preg_match('/\<\?/i', $content)) {
用这行替换 if (preg_match('/\<\?php/i', $content)) {
如果不想麻烦,可以用附件中的VQMOD文件,也可以处理
png image fix.xml
(1.45 KB, 下载次数: 150)
|
|