Hi, when I log into Espo I get a bad server response. The JavaScript console shows the following message:
espo.min.js?r=1550696603:20 Bad server response: <br />
<b>Fatal error</b>: Allowed memory size of 268435456 bytes exhausted (tried to allocate 262144 bytes) in <b>C:\Users\User\xampp\htdocs\EspoCRM\application\ Espo\Core\Acl\Table.php</b> on line <b>154</b><br />
Line 154 of application\Espo\Core\Acl\Table.php contains the following function:
Any ideas on how I can solve this problem?
espo.min.js?r=1550696603:20 Bad server response: <br />
<b>Fatal error</b>: Allowed memory size of 268435456 bytes exhausted (tried to allocate 262144 bytes) in <b>C:\Users\User\xampp\htdocs\EspoCRM\application\ Espo\Core\Acl\Table.php</b> on line <b>154</b><br />
Line 154 of application\Espo\Core\Acl\Table.php contains the following function:
Code:
public function getScopeData($scope) { if (isset($this->data->table->$scope)) { $data = $this->data->table->$scope; if (is_string($data)) { $data = $this->getScopeData($data); return $data; } return $data; } return null; }
Comment