Project

General

Profile

Actions

Bug #76936

closed

[Fluid] publicUrl encoding

Added by E. G. almost 8 years ago. Updated over 7 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Extbase
Target version:
-
Start date:
2016-07-05
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

The getter publicUrl (FileReference) will return an invalid value with encoded special characters like "%C3%B6", "%C3%9F", "%C3%A9" or "%C3%80" instead of their decoded state ("ö", "ß", "é" or "À").

Actions #1

Updated by Frans Saris almost 8 years ago

  • Status changed from New to Needs Feedback

Is this only when output in/with fluid? Or also when directly outputted in the controller for instance?

For instance has the download button on the file info window in the BE the same issue?

Actions #2

Updated by René Fritz over 7 years ago

I can confirm the problem and I think it's either a bug or a misconception - or both.

Just put a file in fileadmin with name 'example-öäü.jpg' and you will see several problems. It doesn't work in BE and not in FE.

Please don't tell me not to use umlauts in filenames, we have 2016 and a software that doesn't work with umlauts in filenames is just buggy.

FileReference has a method publicUrl() which url encode the path. The problem is that all the code that just want to access the file (eg. for image processing) uses that method. Obviously that fails because there is no file example-%C3%B6%C3%A4%C3%BC.jpg in the filesystem.

Why is publicUrl() used everywhere? Because there's no method publicFilePath() - at least not when I had a look.

Actions #3

Updated by Frans Saris over 7 years ago

If you need the file path for processing etc use $file->getForLocalProcessing().

The publicUrl is intended to be used as url so thats why it's rawurlencoded.

Actions #4

Updated by Frans Saris over 7 years ago

René Fritz wrote:

Just put a file in fileadmin with name 'example-öäü.jpg' and you will see several problems. It doesn't work in BE and not in FE.

TYPO3 can handle these characters in filenames. But you need to be sure that [SYS][UTF8filesystem] = 1 is set in the install tool.

Actions #5

Updated by Claus Due over 7 years ago

  • Status changed from Needs Feedback to Closed

Closing this since Frans Saris has already given the completely correct answer. Public stream URL is intentionally already encoded. File for local processing (stream path) is not. And do consider the notes about UTF-8 file systems!

Actions

Also available in: Atom PDF