Apen / additional_reports

Useful information in the reports module : xclass, ajax, cliKeys, eID, general status of the system (encoding, DB, php vars...), hooks, compare local and TER extension (diff), used content type, used plugins, ExtDirect... It can really help you during migration or new existing project (to have a global reports of the system).
Other
12 stars 11 forks source link

Extension breaks TYPO3 installations running with PHP 5.3 #3

Closed andre-spindler closed 8 years ago

andre-spindler commented 8 years ago

In ext_localconf.php you use the new short array syntax, introduced with PHP 5.4. Minimum requirement for TYPO3 6.2 is PHP 5.3, but doing so, the installation of current version 3.0.7 breaks. Both frontend and backend fail.

This should be fixed by just add the php version to the constraints in ext_emconf.php. I have not checked in what version this was introduced.

Thanks, André Spindler

Apen commented 8 years ago

Its clearly not a "need" syntax here, so i use old style to be backward compatible. Check last commit

andre-spindler commented 8 years ago

New version 3.0.8 works. Thanks!