Bug #60511
closedFAL Indexer (scheduler task) doesn't respekt symlinks
100%
Description
Currently the indexing scheduler task from FAL ignores symlinks and all files behind symlinks are not indexed.
Method TYPO3\CMS\Core\Resource\Driver\LocalDriver::retrieveFileAndFoldersInPath skips all symlinks because they are not "isFile" and not "isDir".
Updated by Frans Saris over 10 years ago
- Status changed from New to Needs Feedback
Are yourserver settings and folder permissions correct?
From what I read on the net it this should work. Didn't test myself
See:
- http://stackoverflow.com/questions/6969901/is-dir-returning-false-on-symlinks-in-apache
- http://php.net/manual/en/function.is-dir.php
Updated by Markus Blaschke over 10 years ago
Thanks, that was the other issue.
But the real issue remains because the RecursiveDirectoryIterator doesn't follow symlinks be default.
The iterator needs "\FilesystemIterator::FOLLOW_SYMLINKS" as additional mode:
currently:
$iteratorMode = \FilesystemIterator::UNIX_PATHS | \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::CURRENT_AS_FILEINFO;
new:
$iteratorMode = \FilesystemIterator::UNIX_PATHS | \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::CURRENT_AS_FILEINFO | \FilesystemIterator::FOLLOW_SYMLINKS;
"\FilesystemIterator::FOLLOW_SYMLINKS" was introduced with PHP 5.3.1.
Updated by Alexander Opitz over 10 years ago
- Status changed from Needs Feedback to New
Updated by Mathias Schreiber almost 10 years ago
- Sprint Focus set to On Location Sprint
Updated by Mathias Schreiber almost 10 years ago
- Status changed from New to In Progress
Updated by Gerrit Code Review almost 10 years ago
- Status changed from In Progress 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 http://review.typo3.org/36429
Updated by Gerrit Code Review almost 10 years ago
Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/36470
Updated by Roman Schürmann almost 10 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 4929c6f1bf7d2fcdc3d50e38218dbd25429db8a7.
Updated by Anja Leichsenring almost 9 years ago
- Sprint Focus deleted (
On Location Sprint)