Actions
Bug #55392
closedMissing opcode cache throws warning (instead of notice) and triggers mail
Start date:
2014-01-28
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.1
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
If you run TYPO3 on a system without opcode cache (as in many shared hosting environments, e.g. Mittwald), the install tool registers this and shows a warning.
I'd say while APC is certainly a very good addon and everyone should try to use it with TYPO3 because of performance, sadly not everyone can use it. The system runs fine without. Nothing to really "warn" about.
Also, if you have a cronjob running each night, triggering the scheduler running a "report" task, you will get a mail with (by the way 2) failed tests/warnings each night.
It is only a tiny change neccesary:
File typo3/sysext/install/Classes/SystemEnvironment/Check.php
Line 747:
change from
$status = new WarningStatus();
to
$status = new NoticeStatus();
Actions