diff --git a/README.markdown b/README.markdown index 00267cd..e69ace6 100644 --- a/README.markdown +++ b/README.markdown @@ -22,6 +22,7 @@ Todo ---- - Remove older items from the database +- Mark an item as read when you click on "direct link" License ------- @@ -31,7 +32,7 @@ License Requirements ------------ -- PHP >= 5.3 +- PHP >= 5.3.7 - PHP XML extensions (SimpleXML, DOM...) - PHP Sqlite extensions @@ -43,11 +44,12 @@ Libraries used - [PicoTools](https://github.com/fguillot/picoTools) - [PicoDb](https://github.com/fguillot/picoDb) - [SimpleValidator](https://github.com/fguillot/simpleValidator) +- [PHP 5.5 password backport](https://github.com/ircmaxell/password_compat) Installation ------------ -1. You must have a web server with PHP installed (version 5.3 minimum) with the Sqlite and XML extensions +1. You must have a web server with PHP installed (version 5.3.7 minimum) with the Sqlite and XML extensions 2. Download the source code and copy the directory miniflux where you want 3. Check if the directory data is writeable (Miniflux store everything inside a Sqlite database) 4. With your browser go to @@ -67,13 +69,19 @@ By example: 0 */4 * * * cd /path/to/miniflux && php cronjob.php >/dev/null 2>&1 - ### How Miniflux update my feeds from the user interface? Miniflux use an Ajax request to refresh each subscription. By default, there is only 5 feeds updated in parallel. - ### I have 600 subscriptions, how Miniflux handle that? Your life is cluttered. + +### Why there is no categories? Why the feature X is missing? + +Miniflux is a minimalist software. Less is more. + +### I found a bug, what next? + +Report the bug to the [issues tracker](https://github.com/fguillot/miniflux/issues) and I will fix it. \ No newline at end of file diff --git a/miniflux/check_setup.php b/miniflux/check_setup.php index 75ea157..0aaa484 100644 --- a/miniflux/check_setup.php +++ b/miniflux/check_setup.php @@ -2,9 +2,9 @@ // PHP 5.3 minimum -if (version_compare(PHP_VERSION, '5.3.0') < 0) { +if (version_compare(PHP_VERSION, '5.3.7') < 0) { - die('This software require PHP 5.3 minimum'); + die('This software require PHP 5.3.7 minimum'); } // Short tags must be enabled for PHP < 5.4 @@ -39,4 +39,4 @@ if (! function_exists('dom_import_simplexml')) { if (! is_writable('data')) { die('The directory "data" must be writeable by your web server user'); -} \ No newline at end of file +}