Using PHP I need to determine if a file exists.
I've tried file_exists() but the permissions are limited and I don't believe PHP can read the file permissions. The file is a photo and can be viewed via a URL.
eg: http://www.seemeagain.com/users/1000002722/gallery_1312973080.jpg
I've tried is_readable() but I all results again are it doesn't exist.
I've also pointed by functions at index.php to test I was using them correctly and with index.php they return the correct expected results.
Is there a different PHP function I can use to test a file exists by chance or a trick?
thankyou...