Jump to content

Modalità debug e sito inaccessibile


Recommended Posts

PS: risolto il problema dopo aver seguito questo consiglio:
 

In this case, please open file: public_html/src/Adapter/EntityMapper.php go to line code 99

Change from

if (array_key_exists($key, $entity_defs['fields']) || array_key_exists($key, $entity)) {

To
 if (isset($entity_defs['fields'][$key]) || isset($entity->{$key})) {

Save file and double test.

ed aver effettuato il downgrade da php 7.4 a php 7.3

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...