- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将程序从Web导出到OpenCart。我正在尝试登录,但收到此错误消息:
PHP Fatal error: Call to a member function get() on null in /home/key2demo/domains/key2datafeed.com/public_html/ocdemoshops/oc23/system/engine/controller.php on line 10
<?php
abstract class Controller {
protected $registry;
public function __construct($registry) {
$this->registry = $registry;
}
public function __get($key) {
return $this->registry->get($key);
}
public function __set($key, $value) {
$this->registry->set($key, $value);
}
}
这是我编写的代码:
define("VERSION", "1.0");
define("LANGUAGE", "1");
if (is_file('./../admin/config.php')) {
require_once('./../admin/config.php');
}
require_once(DIR_SYSTEM . 'startup.php');
$application_config = 'admin';
$registry = new Registry();
$loader = new Loader($registry);
$registry->set('load', $loader);
$config = new Config();
$config->load('default');
$config->load($application_config);
$registry->set('config', $config);
$registry->set('request', new Request());
$response = new Response();
$response->addHeader('Content-Type: text/html; charset=utf-8');
$registry->set('response', $response);
$registry->set('cache', new Cache($config->get('cache_type'), $config-
>get('cache_expire')));
$registry->set('url', new Url($config->get('site_ssl')));
$language = new Language($config->get('language_default'));
$language->load($config->get('language_default'));
$registry->set('language', $language);
$registry->set('document', new Document());
$event = new Event($registry);
$registry->set('event', $event);
if ($config->get('db_autostart')) {
$registry->set('db', new DB($config->get('db_type'), $config-
>get('db_hostname'), $config->get('db_username'), $config-
>get('db_password'), $config->get('db_database'), $config-
>get('db_port')));
}
if ($config->get('session_autostart')) {
$session = new Session();
$session->start();
$registry->set('session', $session);
}
if ($config->has('action_event')) {
foreach ($config->get('action_event') as $key => $value) {
$event->register($key, new Action($value));
}
}
if ($config->has('config_autoload')) {
foreach ($config->get('config_autoload') as $value) {
$loader->config($value);
}
}
if ($config->has('language_autoload')) {
foreach ($config->get('language_autoload') as $value) {
$loader->language($value);
}
}
if ($config->has('library_autoload')) {
foreach ($config->get('library_autoload') as $value) {
$loader->library($value);
}
}
if ($config->has('model_autoload')) {
foreach ($config->get('model_autoload') as $value) {
$loader->model($value);
}
}
class K2P_API_OCWRITER extends Controller
{
private $errors;
private $admin;
private $adminValidated;
private $adminShops;
public function __construct()
{
$this->errors = array();
}
public function doLog($message)
{
file_put_contents('./key2_log.txt', $message, FILE_APPEND);
}
public function login($usr, $pwd)
{
if ($this->user->login($usr, $pwd)) {
return true;
$this->doLog('logged in');
} else {
$this->doLog('Failed to login, please supply a valid
username/password and check your webshop url');
die;
}
}
public function getLanguages()
{
}
}
$db = new DB(DB_DRIVER, DB_HOSTNAME, DB_USERNAME, DB_PASSWORD, DB_DATABASE);
$registry->set('db', $db);
$registry->set('user', new Cart\User($registry));
$registry->set('tax', new Cart\Tax($registry));
$myAPI = new K2P_API_OCWRITER($registry);
$myAPI->config->set("config_language_id",LANGUAGE);
$command = $myAPI->cleanPost($_POST['command']);
$steps = $myAPI->cleanPost($_POST['steps']);
$page = $myAPI->cleanPost($_POST['page']);
$usr = $myAPI->cleanPost($_POST['usr']);
$pwd = $myAPI->cleanPost($_POST['pwd']);
//$myAPI->doLog(PHP_EOL . 'pages: ' . $page);
//$myAPI->doLog(PHP_EOL . 'steps: ' . $steps);
$totalProducts = $myAPI->getProductCount();
if ($myAPI->checkInput($usr,$pwd,$command,$page,$steps)) {
if ($myAPI->login($usr, $pwd)) {
switch($command){
case "getCategoryCount":
echo json_encode($myAPI->getCategoryCount(),JSON_FORCE_OBJECT
| JSON_UNESCAPED_SLASHES);
break;
case "getProductCount";
echo json_encode($myAPI->getProductCount(),JSON_FORCE_OBJECT |
JSON_UNESCAPED_SLASHES);
break;
case "getCategories":
echo json_encode($myAPI->getCategories($steps, $page,
JSON_FORCE_OBJECT | JSON_UNESCAPED_SLASHES));
break;
case "getProducts":
echo json_encode($myAPI->getProducts($steps, $page,
JSON_FORCE_OBJECT | JSON_UNESCAPED_SLASHES));
break;
default:
echo "Invalid command!";
break;
}
}
}
如果我添加
parent::__construct();
到它。它仍然不起作用。我不知道该添加哪一个,所以我都尝试了。
parent::__construct();
时:
<?php
abstract class Controller {
protected $registry;
public function __construct($registry) {
parent::__construct();
$this->registry = $registry;
}
public function __get($key) {
return $this->registry->get($key);
}
public function __set($key, $value) {
$this->registry->set($key, $value);
}
}
然后我收到此错误消息:
PHP Fatal error: Call to a member function get() on null in /home/key2demo/domains/key2datafeed.com/public_html/ocdemoshops/oc23/system/engine/controller.php on line 11
public function __construct()
{
parent::__construct();
$this->errors = array();
}
然后我收到此错误消息:
PHP Warning: Missing argument 1 for Controller::__construct(), called in /home/key2demo/domains/key2datafeed.com/public_html/ocdemoshops/oc23/key2publish/k2p_api_OCwriter.php on line 95 and defined in /home/key2demo/domains/key2datafeed.com/public_html/ocdemoshops/oc23/system/engine/controller.php on line 5
PHP Notice: Undefined variable: registry in /home/key2demo/domains/key2datafeed.com/public_html/ocdemoshops/oc23/system/engine/controller.php on line 6
PHP Fatal error: Call to a member function get() on null in /home/key2demo/domains/key2datafeed.com/public_html/ocdemoshops/oc23/system/engine/controller.php on line 10
最佳答案
Controller
类的构造函数将$registry
作为参数。因此,当您调用__construct
类的Controller
时,您需要像这样调用它:
parent::__construct($registry);
K2P_API_OCWRITER
构造函数可以是:
class K2P_API_OCWRITER extends Controller
{
public function __construct($registry)
{
// pass `$registry` to parent `__construct`
parent::__construct($registry);
$this->errors = array();
}
}
Controller
对象仍然是:
$myAPI = new K2P_API_OCWRITER($registry);
K2P_API_OCWRITER
构造函数中编写
parent::__construct();
,因为它不扩展任何类,因此它没有父级。
关于php - 子类中的构造函数将覆盖父类中的构造函数。因此父构造函数不会运行。 OpenCart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43494444/
我想使用 opencart sellya 主题在标题中显示语言下拉列表。在下面的链接上,您会在标题中看到语言下拉列表。 http://serwer1382018.home.pl/sellyakids/
谁能帮我在 opencart 中向制造商添加元数据详细信息?我正在寻找添加类似于产品或类别的元数据关键字、描述和制造商描述。 最佳答案 打开您的 opencart 数据库并将以下额外字段添加到 oc_
如何在 Opencart 上为运费加税? 我在我的网站上获得了以下结帐摘要: 小计:£332.50送货区 1:49.99 英镑增值税 (20%):66.50 英镑总计:448.99 英镑 运费为 49
我是 OpenCart 的新手,我想将我的主题应用于 OpenCart。 我知道我不应该直接编辑默认模板,但是如何复制默认模板文件并更改它以应用主题? 最佳答案 Balan,您可以从复制文件夹目录\v
我想在产品描述页面上显示货币列表。我该怎么做? 我从 header.tpl () 中复制代码并将其粘贴到 product.tpl 中,但出现错误: 注意: undefined variable :C:
我想在产品描述页面上显示货币列表。我该怎么做? 我从 header.tpl () 中复制代码并将其粘贴到 product.tpl 中,但出现错误: 注意: undefined variable :C:
我正在尝试创建一个开发站点,我可以在其中将产品添加到我的购物车和交付选项 - 然后结帐。我希望能够在不使用真实卡或支付网关的情况下执行虚拟订单 我启用了免费结账功能,但它没有出现在 OpenCart
我刚刚第 5 次安装 OpenCart,但我总是卡在同一页面上.. 我在安装时没有遇到任何错误,但是当我尝试登录到管理页面时,我总是卡住。如果我尝试使用正确的用户名/密码,它不会显示任何错误。 这里有
我正在使用 OpenCart 版本 3.0.2。 默认情况下,OpenCart 有 4 个区域,我们可以在其中放置模块到我们的布局中。即 左栏 右栏 热门内容 底部内容 我的问题是,我们是否可以以某种
除产品选项外,我的购物车似乎正常运行。当我单击“添加购物车”按钮时,会添加该项目,但不会添加任何选项。我真的不明白为什么会发生这种情况,因为我已经按照函数的需要,使用 option_id 和 opti
如果有2个vQmod /vqmod/xml/mymod1.xml & /vqmod/xml/mymod2.xml 来更改文件(例如) Catalog/model/tool/image.php,在 Op
我已经复制了一份 OpenCart 安装(版本 2.0.3.1)并放到 Windows localhost 上。 我已经解决了几个问题,但现在遇到了一个我无法解决的错误: fatal error :在
我正在编写 VQMod XML 以在 opencart 中编辑 config.php,我在 XML 下方编写并将其保存在 XML 文件夹中。 VQMOD CORE FOR OPENCART - DO
我想从 opencart 2.0 及以上版本的注册、 guest 中删除送货地址或送货地址选项,但送货方式应该在那里,因为我希望账单地址是没有额外字段的送货地址 我试图通过这两个教程在我的 openc
我是这个论坛和 OpenCart 的新手。 我需要有关在 OpenCart 中创建模块的帮助。在我的例子中,它将从我的 WordPress 安装的每个类别中获取最新的 5 个帖子,并将其显示在我的 O
我在 OpenCart 中遇到问题。 当为产品填充 SEO 关键字时,它在 Firefox 和 Chrome 上运行良好,但在 IE(版本 6.)上它崩溃了。 错误: The page you are
我已将我的产品导出到 Excel 电子表格文件中,然后我将我的产品安装到全新安装的 OpenCart 1.5.6.4 中。然后我上传了 OpenCart 2.0.3.1 并运行了升级脚本。我第一次运行
我一直在尝试使用默认模板并尝试更改它的一些功能。在我的产品页面 (catalog/view/theme/mytheme/template/product/product.tpl) 上,我想根据我的客户
在 opencart 版本 3 中有一条通知: It is very imporant that you move the storage directory outside of the web d
我的 OpenCart 网站使用 SendGrid 作为其电子邮件发送系统。直到最近,这一切都正常工作。使用需要向管理员发送电子邮件的功能时(例如,新订单提醒电子邮件、创建新帐户),我收到此错误:
我是一名优秀的程序员,十分优秀!