I saw that one used to have to authorize new customers but, I think that is gone as I can't figure out how to do that.
I see an error in the system log:
2024-11-29 09:29:42 - Error: Could not call registry key model_account_address! in ..../store/system/engine/controller.php on line 39
line 39 is "throw new \Exception('Error: Could not call registry key ' . $key . '!');"
Code: Select all
public function __get(string $key): object {
if ($this->registry->has($key)) {
return $this->registry->get($key);
} else {
throw new \Exception('Error: Could not call registry key ' . $key . '!');
}
}