I have a bug that I can not identify, in my php script I made a session_start() begin in my file.
but I do not understand why in some cases session_start() does not work and I could not return the server, but I have no errors from PHP.
I have read this link session_start() takes VERY LONG TIME and I have try to add session_write_close() but I still have the problem sometimes. 
I really do not look have you any ideas?
Maybe session.gc_probability = 0 can help me ?
Code :
<?php
     session_start();
     echo "test";
?>
 
     
    