mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-07-11 23:57:07 -04:00
* Require PHP 5.5+ https://github.com/FreshRSS/FreshRSS/issues/2469#issuecomment-522255093 I think it would be reasonable to require PHP 5.5+ for the core of FreshRSS after all. As Frenzie said, WordPress currently requires PHP 5.6.20+, and it is the most popular PHP application. We would loose about 20% of the PHP servers according to https://w3techs.com/technologies/details/pl-php/5/all but I expect this number to drop fast after the release of CentOS 8 (CentOS accounts for 17% of Linux servers https://w3techs.com/technologies/details/os-linux/all/all ). Distributions: * no impact on Ubuntu, Fedora, Alpine, OpenWRT, FreeBSD, OpenSuze, Mageia, as all active versions have PHP > 7 * no impact on OpenSuze, Synology, as all active versions have PHP > 5.5 * we drop Debian 8 Jessie (-2020) - we keep supporting Debian 9 Stretch (2017-06) - current is Debian 10 Buster * we drop Red Hat 7 (-2024) - we keep supporting RHEL 8 (2019-05) * we drop CentOS 7 (-2024) - we will support CentOS 8 (to be released soonish) When dropping older versions, I can better like when it is for a good reason, and there is actually one with PHP 5.5, namely generators (yield) https://php.net/language.generators.overview which I consider using. * Version note for JSON.php * hex2bin * Update .travis.yml Co-Authored-By: Frans de Jonge <fransdejonge@gmail.com>
39 lines
1.2 KiB
PHTML
39 lines
1.2 KiB
PHTML
<?php $this->partial('aside_configure'); ?>
|
|
|
|
<div class="post">
|
|
<a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('gen.action.back_to_rss_feeds'); ?></a>
|
|
|
|
<h2><?php echo _t('admin.check_install.php'); ?></h2>
|
|
|
|
<?php foreach ($this->status_php as $key => $status) { ?>
|
|
<p class="alert <?php echo $status ? 'alert-success' : 'alert-error'; ?>">
|
|
<?php
|
|
if ($key === 'php') {
|
|
echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'), PHP_VERSION, '5.5.0');
|
|
} else {
|
|
echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok'));
|
|
}
|
|
?>
|
|
</p>
|
|
<?php } ?>
|
|
|
|
<h2><?php echo _t('admin.check_install.files'); ?></h2>
|
|
|
|
<?php foreach ($this->status_files as $key => $status) { ?>
|
|
<p class="alert <?php echo $status ? 'alert-success' : 'alert-error'; ?>">
|
|
<?php echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok')); ?>
|
|
</p>
|
|
<?php } ?>
|
|
|
|
<?php /*
|
|
<h2><?php echo _t('admin.check_install.database'); ?></h2>
|
|
|
|
<?php foreach ($this->status_database as $key => $status) { ?>
|
|
<p class="alert <?php echo $status ? 'alert-success' : 'alert-error'; ?>">
|
|
<?php echo _t('admin.check_install.' . $key . '.' . ($status ? 'ok' : 'nok')); ?>
|
|
</p>
|
|
<?php } ?>
|
|
*/ ?>
|
|
|
|
</div>
|