When trying to register a new user, drupal gives me this error... ...
Just found out that Fatal error: Cannot access empty property in /var/www/includes/bootstrap.inc on line 795

I have no idea what causes this problem...

Your helps are appreciated.

Comments

Rhino’s picture

I just got the same exact error- followed by the white screen of death on every page (for ALL visitors) to the site.

I was just testing and invite only user setup, using the invite module and the setting "new user registrations by invitation only". I seem to have created a use OK, but then this happened.

Rhino’s picture

I've edited away the line 795 /* and added a ; to the line above it.

This helped me get away from the white page of death, so the lines now read;

    foreach ($data as $key => $value) {
      if (!isset($obj->$key)); {
/*        $obj->$key = $value;*/
      }
ilw’s picture

What this is mean?

I had the same issue and your solution solve it. do you know why its happen?