Feature #60019
closedCreate utility function to get the file mimetype depending on available php modules
100%
Description
TYPO3 does currently use finfo_file
to get the mime type of a file. This does only work if the finfo
module is loaded in PHP.
dkd is currently working with Microsoft to get TYPO3 working in the Microsoft Azure Web Gallery and there is no finfo
module installed by default.
To get this code a little bit more portable there should be a wrapper function that checks if the finfo
exsists and if not use mime_content_type
.
Updated by Gerrit Code Review over 10 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/31256
Updated by Gerrit Code Review over 10 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/31256
Updated by Gerrit Code Review over 10 years ago
Patch set 7 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31256
Updated by Ingo Schmitt almost 10 years ago
- Category set to File Abstraction Layer (FAL)
Updated by Sascha Egerer almost 10 years ago
- Target version set to next-patchlevel
- Sprint Focus set to On Location Sprint
Updated by Gerrit Code Review almost 10 years ago
Patch set 8 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31256
Updated by Gerrit Code Review almost 10 years ago
Patch set 9 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31256
Updated by Gerrit Code Review almost 10 years ago
Patch set 10 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31256
Updated by Gerrit Code Review almost 10 years ago
Patch set 11 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31256
Updated by Gerrit Code Review almost 10 years ago
Patch set 12 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31256
Updated by Gerrit Code Review almost 10 years ago
Patch set 13 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31256
Updated by Anonymous almost 10 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset e372399b4bef5d76bbeeee1ec12e8f56c257e4b6.
Updated by Stephan Großberndt almost 10 years ago
- Tracker changed from Bug to Feature
Updated by Beltran Rueda over 9 years ago
I could reproduce the following issue on Windows using 7.1.0 version:
PHP Fatal error: Class 'finfo' not found in ...\typo3\sysext\core\Classes\Type\File\FileInfo.php on line 33
Replacing the following in the FileInfo.php file fixes the issue. Could you confirm this fix is correct?
if (!function_exists('finfo_file')) {
with:
if (function_exists('finfo_file')) {
Updated by Wouter Wolters over 9 years ago
Hi, this has been fixed meanwhile with https://review.typo3.org/#/c/37205/
Updated by Anja Leichsenring almost 9 years ago
- Sprint Focus deleted (
On Location Sprint)
Updated by Andreas Kienast over 6 years ago
- Related to Bug #85641: mimeTypeGuessers hook of FileInfo is broken added