Hey,
i have a php app that calls a method on a remote system. I have no way of testing the remote system to ensure it is responsive as it has a web front end that responds despite the fact that it's background listener has died. The result is that my php script calls just sit and eventually hit the php timeout and toss an ugly error. (usually stack overflow errors).
i've seen that there are ways to adjust the system time out (set_time_out) but this doesn't help. i still get the ugly message.
i also see lots of folks suggesting using fsocketopen but again this doesn't help as the remote system's web front end will respond.
does anyone have any idea how i can even just present a customized message once a given time has passed on my function call?
thanks,
dean