I am facing a issue such that i am able to link to a file that is present in an http server or a ftp server.. but i am not able to link to a file that is present in a file server..
ie, More Clearly..
if the URL is http://serverpath.com/images/image.jpg
or ftp://serverpath.com/images/image.jpg
or a remote path the file_exists
function gives a true
value but if a give a file server path like the similar path as //serverpath/public/images/image.jpg
the file_exists
function is giving a false
value.
UPDATE
I am using PHP 5.4.4
There was a bug reported regarding this issue in the previous version of php ie below 5.3 and it was told that this issue has been solved in the versions above 5.3. Is there any change in the php.ini that we need to make change to enable. I searched but did not get the answer i expected
Please Help