Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to display an image which has strange characters in the OS filesys. I think the OS is CentOS Linux. I'm not sure what character encoding the OS filenames has, or if an 'ö' is always encoded the same way in the filename. At least the files that contain 'ö' in this folder do converted in the src to %F6 in the code below, but the browser cannot find the file. I have found no way to browse to these ö-files on the server.

$content = '';
$images = scandir("gallery/test");
foreach( $images as $im )
{
        $im_rurl = rawurlencode($im);
        if ( is_dir("gallery/$im") ) continue;
        $content .= "<img src='gallery/test/$im_rurl' />";
}
echo $content;

Can you please help me to access these files from the browser?

share|improve this question
Have you tried without the encoding? – PeeHaa 埽 Jun 13 '12 at 8:20
welcome to the fun world of filename encodings. Linux does not have a notion of encoding in the filesystem, so what you specify when creating the file will be kept -> it won't be consistent. And the browser will potentially use a different encoding again. – mensi Jun 13 '12 at 8:21
the purpose of this solution is to automatically generate an image gallery from an ftp upload...would you say php+linux is unable to do that? at least apache should be able to list the files, how would it work in such a case? PeeHaa, yes, it did not work. – ribot Jun 13 '12 at 14:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.