-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatibility with TYPO3 v8 due to missing TYPO3\CMS\Core\Site\SiteFinder #24
Comments
Hi @julianhofmann, Thanks for your report. The SiteFinder is called only in versions of 9.5 and above. See https://github.com/IchHabRecht/filefill/blob/master/Classes/Repository/DomainResourceRepository.php This is perfectly fine for TYPO3 8.7 as the class isn't used here. |
Theoretically, you're right. But the version_compare() does not match because of wrong parameter order: Should be:
|
Hi @julianhofmann, That's a better report than the first one ;-) Thanks for your pull request. |
You're right. I had not analyzed the reason for the problem before you pointed out the version compare. Because I had the extension installed in a TYPO3 v8.7 and got an exception when running it, I took a deeper look. |
\IchHabRecht\Filefill\Repository\DomainResourceRepository uses TYPO3\CMS\Core\Site\SiteFinder which does not exist in TYPO3 v8. So the package could not be compatible with TYPO3 v8.7 anymore.
The text was updated successfully, but these errors were encountered: