I'm having a strange problem with the file_exists()
PHP function on a Linux server.
When using file_exists to check the image is on the server before editing it, it will sometimes fail for no apparent reason. File paths are absolute and I've checked them through ssh they are 100% at the specified path.
The images that fail file_exists() will still display in the browser. The code doesn't make a difference a basic var_dump(file_exists('/home/user/path/image.jpg'));
will return false.
The file permissions/ownerships are exactly the same on all images and parent directories. Safe mode is off. There are no PHP errors. I'm stumped now and not sure what to look for.
Here is how the images are on the server:
/home/user/public_html/images/location/1.jpg -- will work
/home/user/public_html/images/location2/1.jpg -- won't work
/home/user/public_html/images/location2/2.jpg -- will work
I have root access to the server so if anyone has any ideas I will happily try them out.
Thanks in advance for your advice, let me know if you need extra info.
EDIT: To answer the questions in the comments below.
[root@server ~]# ls -l /home/user/public_html/images/Hawkhurst/
total 92
-rwxr-xr-x 1 user user 24501 Aug 11 2009 1.jpg
-rwxr-xr-x 1 user user 1672 Aug 11 2009 1.thumb.jpg
-rwxr-xr-x 1 user user 14983 Aug 11 2009 2.jpg
-rwxr-xr-x 1 user user 1370 Aug 11 2009 2.thumb.jpg
-rwxr-xr-x 1 user user 17238 Aug 11 2009 3.jpg
-rwxr-xr-x 1 user user 1453 Aug 11 2009 3.thumb.jpg
-rwxr-xr-x 1 user user 14168 Aug 11 2009 4.jpg
-rwxr-xr-x 1 user user 1464 Aug 11 2009 4.thumb.jpg
[root@server ~]#
I have tried with permissions 777 and 755 which make no difference. For example in this folder, 1 and 2 may work whilst 3 & 4 don't...
I ran a quick test to see what apache/php runs as and they do run as nobody, but this does not explain why some images work and some don't with the exact same permissions.
EDIT 2: Problem solved. Can't believe how stupid it was, some of the filenames which were called from a database had spaces at the end... Whoever made the original script didn't run any sort of cleaning up before saving them.
Try running ls -l /home/user/public_html/images/location/
and add the output to your question.
This is most likely a permission problem. PHP probably does not have read-access to the file.
After a lot of searches on the web, I found the solution myself. Hope it will be helpful for other people: Ensure that the User and Group that are configured in your apache httpd.conf are the same like the apache group and user.
Perhaps, in a name of the file there is a whitespace symbol. It's important.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With