Bug #63575
closedtypo3 7.0 - php settings check is wrong
0%
Description
The php-settings check on the beginning of install is
very handy, but it does not accept these php.ini lines:
upload_max_filesize=24MB
max_execution_time=240
phpinfo() tell the settings above are active.
Rechecking and restarting typo3-install-tool
will not accept these settings.
Updated by Markus Klein almost 10 years ago
- Status changed from New to Needs Feedback
upload_max_filesize=24MB
is INVALID!
check php.ini documentation, must be:
upload_max_filesize=24M
Updated by Paul A. Auwehla almost 10 years ago
Yes, of course php.ini sould read
something like this:
upload_max_filesize=24M
max_execution_time=240
BUT:
The key issue is, that this doesnt matter
for this bug:
php.ini is in root directory of typo3
but install tool does not look there
only the installed typo3 later on will
see this php.ini.
So the check button of install-tool should take the
typo3-root php.ini to check?
Copy or link the php.ini from root dir
to Install.php dir and the check will be fine.
I find this very important:
Install tool for the new typo3 7 should
go as soft and fluent as possible in my opinion.
Updated by Markus Klein almost 10 years ago
php.ini in the rootdir?
TYPO3 does not read any php.ini file at all... that's the job of PHP itself.
With PHP you can only ask the runtime what the current configuration is, nothing more.
If your PHP config is not applied, this is not a problem of TYPO3, but of your PHP/server setup.
I'm sorry, but there's nothing we can do about it.
Updated by Anja Leichsenring over 9 years ago
- Status changed from Needs Feedback to Rejected
- Priority changed from Must have to Won't have this time
there is no bug in TYPO3 in this regard.