After doing some research on this issue, I couldn't find any satisfying fix.
The problem is: I'm performing a GET request programmatically. The request itself works fine and the requested page does so as well. I need to check for a valid login before performing any other actions within the requested page, therefore I've sent the Session cookie to receive the Session's ID, which also works fine. But as soon as I invoke *session_start( )*, the request exceeds the execution time limit of 60 seconds. Accessing the requested page directly works fine, though.
This might be an important remark: The requesting page also uses Sessions for the same checkings.
The reason why I want the requested page to be "remote" / "standalone" / however you want to call it, is that I want to make it accessible via AJAX as well. I suppose simply including the file and check whether the file is directly called would work as well, but I've done it now this way and am almost satisfied with it.
My question now is: Can anybody tell me why session_start rather crashes my script? And does somebody know a patch for this?