[SOLVED] Customers Not Showing on Admin Screen.
Posted: Sat Nov 30, 2024 12:19 am
I am having a problem where the user registers for the store, and I go into the admin screen to look at the customer list. The newly registered customer does not show on the list. At the bottom of the list there is a number of customers and it indicated that there is more customers than what is being shown.
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 . '!');"
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 . '!');
}
}