I have a page that loads images dynamically via a file called thumb.php
This file takes the large image file, makes a thumbnail and outputs a jpg like so:
<img src="thumb.php?width=100&height=100&cropratio=1:1&image=/photos/45_Jumps-059.jpg" />
I have a problem on my server where when I reach around 60 requests (requests thumb.php 60+ times for all the images), the response I get back from the server is:
Remote server closed the connection before sending response header
and the image fails to load.
Is this like apache or php running out of memory or something? It stalls my whole server for about a minute before it starts working again.