Ho un errore irreversibile EntityMalformedException: proprietà bundle mancante sull'entità di tipo nodo. in entity_extract_ids () (riga 7700 di. \ Includes \ common.inc) quando si tenta di accedere a user / xyz .
Ho provato a recuperare informazioni sul nodo non valido alla riga 7700, in cui viene creato il messaggio di errore, come:
if (!isset($entity->{$info['entity keys']['bundle']}) || $entity->{$info['entity keys']['bundle']} === '') {
dpm($info);// or dpm($entity);
throw new EntityMalformedException(t('Missing bundle property on entity of type @entity_type.', array('@entity_type' => $entity_type)));
}
dpm($entity)
restituisce un oggetto utente imprevisto e $ info una quantità enorme di cose.
Qualcuno potrebbe mettermi sulla strada giusta?
Ho già letto tutto quello che ho potuto trovare sugli errori di proprietà del bundle mancante , ma nessuno mi ha aiutato a risolverlo.
dpm($entity)
ritorna
uid (String, 2 characters ) 70
name (String, 9 characters ) John
pass (String, 55 characters ) $S$DUwPuOuDPiDL4nRTYXqc7a5uOfMKey7pyhOFUEKka1XM...
mail (String, 30 characters ) john@example.com
theme (String, 0 characters )
signature (String, 0 characters )
signature_format (String, 13 characters ) filtered_html
created (String, 10 characters ) 1396286331
access (String, 10 characters ) 1397146661
login (String, 10 characters ) 1396513460
status (String, 1 characters ) 1
timezone (NULL)
language (String, 2 characters ) fr
picture (NULL)
init (String, 30 characters ) john@example.com
data (Array, 5 elements)
roles (Array, 1 element)
og_user_node (Array, 0 elements)
message_subscribe_email (Array, 1 element)
field_bio (Array, 0 elements)
field_name_first (Array, 1 element)
field_name_last (Array, 1 element)
field_facebook_url (Array, 0 elements)
field_linkedin_url (Array, 0 elements)
field_twitter_url (Array, 0 elements)
user_trusted_contacts (Array, 1 element)
group_group (Array, 1 element)
group_access (Array, 1 element)
metatags (Array, 0 elements)
rdf_mapping (Array, 3 elements)
realname (String, 13 characters ) John Doe
content (Array, 13 elements)
entity_view_prepared (Boolean) TRUE
privatemsg_disabled (Boolean) FALSE
entity_extract_ids('node', $var);
, ma invece di un oggetto nodo per $var
, sta passando un oggetto utente. Se hai moduli contrib personalizzati o dev versione, prova a disabilitarli uno per uno per vederlo, puoi trovare il colpevole
dpm(debug_print_backtrace());
sarà prezioso qui. Puoi vedere quale modulo ha iniziato tutto seguendo le funzioni all'inizio della richiesta
xdebug.collect_params = 4
questo ti renderà anche la vita molto più semplice