I am using getimagesize in PHP to get information about an image in my script...
$thumb = "http://i.ytimg.com/vi/u6XAPnuFjJc/hqdefault.jpg";
$imageInfo = getimagesize($thumb);
The problem is that on one of my servers, it is returning the error:
getimagesize() [function.getimagesize]: URL file-access is disabled in the server configuration
I will not be able to fix this configuration issue on this specific server. I'm wondering if anyone has any ideas on how I can work around this issue. Would it be possible to take the image, save it to a temporary file and then use getimagesize based on the temporary image? Once its all done, the temporary file would then need to be deleted.
If this is possible, how would I do this?
curl? – drudge Dec 2 '10 at 1:02