After reinstalling my wamp environment this error message is showing on screen after I open app_dev.php:
Fatal error: Cannot redeclare class SessionHa
PHP version 5.4 introduced a new session management system based on an interface called SessionHandlerInterface and it would seem that your Symfony2 code declares a class with the very same name in the global namespace, so there is a name clash.
Here are the docs: http://www.php.net/manual/en/class.sessionhandlerinterface.php
SessionHandlerInterface is an interface which defines a prototype for creating a custom session handler. In order to pass a custom session handler to session_set_save_handler() using its OOP invocation, the class must implement this interface.