I am trying to launch one php process that should read about 20.000 records, call facebook API, return some data and update the database.
But after 500 or so records, the page timeouts and says:
""Network Error (tcp_error)
A communication error occurred: ""
The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
For assistance, contact your network support team. ""
I think that maybe is because there are lot's of connections IN and OUT from this server so the server stops responding.
Also, if I try to open any page on the same domain, I can't. The page is hanging utill the process finish.
Is there anything that can be optimized?
session_write_close()to free up the session so you can use other parts of the site that also use sessions. otherwise your script will "lock you out" – Marc B Apr 6 '11 at 14:25