Someone on the elegantthemes.com forums figured it out. There’s an infinite loop happening:
Into file : wp-includes\l10n.php
into the function get_locale()
the line number 41 :
return apply_filters( ‘locale’, $locale );
calls into an infinite loop with the
add_filter( ‘locale’, ‘et_divi_maybe_change_frontend_locale’ );
So I disable the line
add_filter( ‘locale’, ‘et_divi_maybe_change_frontend_locale’ );
into the file wp-content\themes\Divi\functions.php arround line 8441
to avoid call and call until crash of PHP or Apache I don’t know.