-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
No more compatibility with PHP 5.4 #17
Comments
Hi @Oktopuce Thanks for reporting that issue! We will fix it soon and release a new version! |
Hi, There is another compatibility problem the extension cannot be installed on Typo3 6.2.0 because there is a problem with the composer : Oops, an error occurred! Florian |
I found this solution for composer : change the package name from typo3/cms to typo3/cms-cms. |
This occurred when I tried to install the version 1.2.0 on a typo3 6.2.0. Look here : https://review.typo3.org/#/c/35501/2/composer.json |
As far as I can see is I also tested installing the extension on TYPO3 6.2.16 using the extension manager, that worked for me. Do you install it with the extension manager or via composer? What commands do you use? Have you tested it with a fresh installation of TYPO3 6.2? What could I do to reproduce the issue? |
I installed it via the Extension Manager. I didn't test it on a fresh installation. |
Hmm..I could not reproduce that issue. Although I can not yet fully grasp the problem or the way TYPO3 handles the composer.json files, I think the dependency should be |
I fixed these issues and created a new release. Soon the extension will be available in TER. |
Hi,
The last version of the extension is no more compatible with PHP 5.4 because of this line :
$this->configurationManager = GeneralUtility::makeInstance(ConfigurationManager::class);
in 5.4 you can use this :
$this->configurationManager = GeneralUtility::makeInstance(\get_class(new \TYPO3\CMS\Extbase\Configuration\ConfigurationManager));
Reagrds,
Florian
The text was updated successfully, but these errors were encountered: