我正在使用opencart 2.0,一切正常,直到我安装了扩展程序。我已经安装了一个主题,但插入扩展后出现了几个错误。我不熟悉Php,所以我很难搞清楚事情。
我做了一些研究,有些人说它可能是版本缺陷,但我使用的所有内容都是针对opencart 2.0的,另一个则说可能是配置文件设置不正确,但我没有移动我的从本地到现场的网站,所以我的配置文件中的所有内容都是正确的。 他最后一个是插入isset,我不确定这个,但从代码的外观我认为一切都设置正确。
这是错误
Notice: Undefined index: company_id_display in C:\wamp\www\quick3\catalog\view\theme\default\template\d_quickcheckout\payment_address.tpl on line 85
2015-03-21 11:22:23 - PHP Notice: Undefined index: company_id_required in C:\wamp\www\quick3\catalog\view\theme\default\template\d_quickcheckout\payment_address.tpl on line 86
2015-03-21 11:22:23 - PHP Notice: Undefined index: tax_id_display in C:\wamp\www\quick3\catalog\view\theme\default\template\d_quickcheckout\payment_address.tpl on line 87
2015-03-21 11:22:23 - PHP Notice: Undefined index: tax_id_required in C:\wamp\www\quick3\catalog\view\theme\default\template\d_quickcheckout\payment_address.tpl on line 88
2015-03-21 11:35:31 - PHP Notice: Undefined index: company_id_display in C:\wamp\www\quick3\catalog\view\theme\default\template\d_quickcheckout\payment_address.tpl on line 85
2015-03-21 11:35:31 - PHP Notice: Undefined index: company_id_required in C:\wamp\www\quick3\catalog\view\theme\default\template\d_quickcheckout\payment_address.tpl on line 86
2015-03-21 11:35:31 - PHP Notice: Undefined index: tax_id_display in C:\wamp\www\quick3\catalog\view\theme\default\template\d_quickcheckout\payment_address.tpl on line 87
2015-03-21 11:35:31 - PHP Notice: Undefined index: tax_id_required in C:\wamp\www\quick3\catalog\view\theme\default\template\d_quickcheckout\payment_address.tpl on line 88
2015-03-21 11:38:17 - PHP Notice: Undefined variable: template in C:\wamp\www\quick3\catalog\controller\module\d_quickcheckout.php on line 644
2015-03-21 11:38:17 - PHP Warning: require(C:\wamp\www\quick3\catalog\view\theme): failed to open stream: Permission denied in C:\wamp\www\quick3\vqmod\vqcache\vq2-system_engine_loader.php on line 37
2015-03-21 11:52:09 - PHP Notice: Undefined variable: template in C:\wamp\www\quick3\catalog\controller\module\d_quickcheckout.php on line 644
2015-03-21 11:52:09 - PHP Warning: require(C:\wamp\www\quick3\catalog\view\theme): failed to open stream: Permission denied in C:\wamp\www\quick3\vqmod\vqcache\vq2-system_engine_loader.php on line 37
2015-03-21 20:09:29 - PHP Notice: Undefined variable: template in C:\wamp\www\quick3\catalog\controller\module\d_quickcheckout.php on line 644
2015-03-21 20:09:29 - PHP Warning: require(C:\wamp\www\quick3\catalog\view\theme): failed to open stream: Permission denied in C:\wamp\www\quick3\vqmod\vqcache\vq2-system_engine_loader.php on line 37
2015-03-25 7:35:52 - PHP Notice: unserialize(): Error at offset 0 of 31 bytes in C:\wamp\www\quick3\system\library\cart.php on line 23
2015-03-25 7:38:12 - PHP Notice: Undefined variable: text_qty in C:\wamp\www\quick3\vqmod\vqcache\vq2-catalog_view_theme_marketshop_template_product_product.tpl on line 294
2015-03-25 7:38:27 - PHP Notice: Undefined variable: template in C:\wamp\www\quick3\catalog\controller\module\d_quickcheckout.php on line 644
2015-03-25 7:38:27 - PHP Warning: require(C:\wamp\www\quick3\catalog\view\theme): failed to open stream: Permission denied in C:\wamp\www\quick3\vqmod\vqcache\vq2-system_engine_loader.php on line 37
2015-03-25 8:16:12 - PHP Notice: Undefined variable: template in C:\wamp\www\quick3\catalog\controller\module\d_quickcheckout.php on line 644
2015-03-25 8:16:12 - PHP Warning: require(C:\wamp\www\quick3\catalog\view\theme): failed to open stream: Permission denied in C:\wamp\www\quick3\vqmod\vqcache\vq2-system_engine_loader.php on line 37
2015-03-25 8:35:20 - PHP Notice: Undefined variable: template in C:\wamp\www\quick3\catalog\controller\module\d_quickcheckout.php on line 644
2015-03-25 8:35:20 - PHP Warning: require(C:\wamp\www\quick3\catalog\view\theme): failed to open stream: Permission denied in C:\wamp\www\quick3\vqmod\vqcache\vq2-system_engine_loader.php on line 37
2015-03-25 10:08:01 - PHP Notice: Undefined variable: template in C:\wamp\www\quick3\catalog\controller\module\d_quickcheckout.php on line 644
2015-03-25 10:08:01 - PHP Warning: require(C:\wamp\www\quick3\catalog\view\theme): failed to open stream: Permission denied in C:\wamp\www\quick3\vqmod\vqcache\vq2-system_engine_loader.php on line 37
这是代码
第644行d_quickcheckout.php
return $this->load->view($template, $data);
payment_address.tpl第85,86,87行和第88行
customer_group[<?php echo $customer_group['customer_group_id']; ?>]['company_id_display'] = '<?php echo $customer_group['company_id_display']; ?>';
customer_group[<?php echo $customer_group['customer_group_id']; ?>]['company_id_required'] = '<?php echo $customer_group['company_id_required']; ?>';
customer_group[<?php echo $customer_group['customer_group_id']; ?>]['tax_id_display'] = '<?php echo $customer_group['tax_id_display']; ?>';
customer_group[<?php echo $customer_group['customer_group_id']; ?>]['tax_id_required'] = '<?php echo $customer_group['tax_id_required']; ?>';
第37行
vq2-system_engine_loader.php
require(VQMod::modCheck($file));
当我检查我的vqmod日志时,会出现
---------- Date: 2015-03-21 11:20:05 ~ IP : ::1 ----------
REQUEST URI : /quick3/admin/index.php?route=common/dashboard&token=5f0179921a263de04c1c92819780f622
MOD DETAILS:
modFile : C:\wamp\www\quick3\vqmod/xml/extension_name.xml
id : EXTENSION
version : 2.0.0.0
vqmver : 2.2.1
author : dreamvention.com
VQModObject::parseMods - Could not resolve path for [catalog/view/theme/default/template/payment/pp_pro_uk.tpl] (SKIPPED)
----------------------------------------------------------------------
---------- Date: 2015-03-21 11:35:16 ~ IP : ::1 ----------
REQUEST URI : /quick3/admin/index.php?route=extension/module&token=5f0179921a263de04c1c92819780f622
MOD DETAILS:
modFile : C:\wamp\www\quick3\vqmod/xml/extension_name.xml
id : EXTENSION
version : 2.0.0.0
vqmver : 2.2.1
author : dreamvention.com
VQModObject::parseMods - Could not resolve path for [catalog/view/theme/default/template/payment/pp_pro_uk.tpl] (SKIPPED)
MOD DETAILS:
modFile : C:\wamp\www\quick3\vqmod/xml/theme_name.xml
id : Theme
version : 2.0
vqmver : 2.X
author : HarnishDesign.net
VQModObject::parseMods - Could not resolve path for [catalog/controller/module/product.php] (SKIPPED)
----------------------------------------------------------------------
答案 0 :(得分:2)
第641行的代码d_quickcheckout.php中存在拼写错误,导致第644行查找尚未设置的变量。
在第641行将$ templatetemplate更改为$ template。