since a few hours our server hangs every time you do a session_start.
For testing purposes i created a script which looks like this:
To throw another answer into the mix for those going bananas, I had a session_start() dying only in particular cases and scripts. The reason my session was dying was ultimately because I was storing a lot of data in them after a particularly intensive script, and ultimately the call to session_start()
was exhausting the 'memory_limit' setting in php.ini.
After increasing 'memory_limit', those session_start()
calls no longer killed my script.