Project

General

Profile

Actions

Bug #99926

closed

PHP Warning when file does not exists.

Added by JAKOTA Design Group GmbH about 1 year ago. Updated about 1 year ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
File Abstraction Layer (FAL)
Target version:
Start date:
2023-02-10
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
11
PHP Version:
8.0
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:

Description

Hi

PHP Warning: file_get_contents(/var/www/public/fileadmin/media/user_upload/video.youtube): Failed to open stream: No such file or directory in /var/www/public/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php line 1359

Steps to reproduce:

1. add a youtube video as content element
2. delete the .youtube file from upload folder
3. open page in frontend

LocalDriver.php should check if a file is readable before reading it.

LocalDriver.php line 1359

From:

        return file_get_contents($filePath);

To;

        return is_readable($filePath) ? file_get_contents($filePath) : '';

Or maybe this check is better suited elsewhere?!

Thanks


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Task #100048: Ensure that getFileContents returns correct type in YamlFileLoaderClosedThomas Hohn2023-02-28

Actions
Actions #1

Updated by JAKOTA Design Group GmbH about 1 year ago

  • Description updated (diff)
Actions #2

Updated by JAKOTA Design Group GmbH about 1 year ago

Sure. If that is the case, I'm all for it.

Actions #3

Updated by Gerrit Code Review about 1 year ago

  • Status changed from New to Under Review

Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77978

Actions #4

Updated by Gerrit Code Review about 1 year ago

Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77978

Actions #5

Updated by Thomas Hohn about 1 year ago

  • Assignee set to Thomas Hohn
Actions #6

Updated by Gerrit Code Review about 1 year ago

Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77978

Actions #7

Updated by Simon Schaufelberger about 1 year ago

  • Related to Task #100048: Ensure that getFileContents returns correct type in YamlFileLoader added
Actions #8

Updated by Gerrit Code Review about 1 year ago

Patch set 1 for branch 11.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77989

Actions #9

Updated by Thomas Hohn about 1 year ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #10

Updated by Benni Mack about 1 year ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF