Could someone please help me I am running a clean install of Opencart 2.2.0.0 with ExcelPort 2.2.2 installed but on the excelport page it's showing the following error.
Notice: Undefined property: Proxy::$conditions in "Directory Deleted" system/engine/proxy.php on line 4Notice: Undefined property: Proxy::$operations in "Directory Deleted"/system/engine/proxy.php on line 4
Proxy.php currently looks like this
Code: Select all
<?php
class Proxy {
public function __get($key) {
return $this->{$key};
}
public function __set($key, $value) {
$this->{$key} = $value;
}
public function __call($key, $args) {
if (isset($this->{$key})) {
return call_user_func($this->{$key}, $args);
} else {
$trace = debug_backtrace();
exit('<b>Notice</b>: Undefined property: Proxy::' . $key . ' in <b>' . $trace[1]['file'] . '</b> on line <b>' . $trace[1]['line'] . '</b>');
}
}
}