I have a PHP script which also connects to mysql which parses image URLS (read from mysql) and returns the width and height of the image using:
getimagesize($imageURL);
It seems to take forever even for 25 images. It will output the width of each image if I only check 25 image urls but if I try to do 50 it "processes" forever then just seems to quit with no output.
So, is this PHP timing out, mySQL timing out, Apache timing out (running on localhost here), the browser timing out or....????
Very confused. The only option I can see is to run the script for 25 images then just use javascript or a redirect to open another page to read images 26-50 then another for 51-75 ... etc, etc..
Thanks for any help!
John