2016-08-19 02:16:01 +02:00
|
|
|
Frequently Asked Questions
|
|
|
|
==========================
|
2014-04-06 03:58:17 +02:00
|
|
|
|
2014-10-31 03:10:59 +01:00
|
|
|
How does Miniflux update my feeds from the user interface?
|
|
|
|
----------------------------------------------------------
|
2014-04-06 03:58:17 +02:00
|
|
|
|
|
|
|
Miniflux uses an Ajax request to refresh each subscription.
|
|
|
|
By default, there is only 5 feeds updated in parallel.
|
|
|
|
|
2014-10-31 03:10:59 +01:00
|
|
|
I have 600 subscriptions, can Miniflux handle that?
|
|
|
|
---------------------------------------------------
|
2014-04-06 03:58:17 +02:00
|
|
|
|
|
|
|
Probably, but your life is cluttered.
|
|
|
|
|
2015-11-06 23:16:12 +01:00
|
|
|
Why is feature X missing?
|
2016-08-19 02:16:01 +02:00
|
|
|
-------------------------
|
2014-04-06 03:58:17 +02:00
|
|
|
|
2014-04-06 18:02:45 +02:00
|
|
|
Miniflux is a minimalist software. _Less is more_.
|
2014-04-06 03:58:17 +02:00
|
|
|
|
2014-10-31 03:10:59 +01:00
|
|
|
I found a bug, what next?
|
|
|
|
-------------------------
|
2014-04-06 03:58:17 +02:00
|
|
|
|
2015-02-07 17:49:55 +01:00
|
|
|
Report the bug to the [issues tracker](https://github.com/miniflux/miniflux/issues) and I will fix it.
|
2014-04-06 03:58:17 +02:00
|
|
|
|
|
|
|
You can report feeds that doesn't works properly too.
|
|
|
|
|
2014-10-31 03:10:59 +01:00
|
|
|
What browser is compatible with Miniflux?
|
|
|
|
-----------------------------------------
|
2014-04-06 03:58:17 +02:00
|
|
|
|
|
|
|
Miniflux is tested with the latest versions of Mozilla Firefox, Google Chrome and Safari.
|
|
|
|
|
2014-12-29 23:10:37 +01:00
|
|
|
Miniflux is also tested on mobile devices Android (Moto G) and Ipad Mini (Retina).
|
2014-04-06 18:02:45 +02:00
|
|
|
|
2014-10-31 03:10:59 +01:00
|
|
|
How to setup Miniflux on OVH shared-hosting?
|
|
|
|
--------------------------------------------
|
2014-04-06 18:02:45 +02:00
|
|
|
|
|
|
|
OVH shared web-hosting can use different PHP versions.
|
2016-08-19 02:16:01 +02:00
|
|
|
To have Miniflux working properly you have to use a custom `.htaccess`, for example:
|
|
|
|
|
|
|
|
```
|
|
|
|
SetEnv PHP_VER 5_4
|
|
|
|
SetEnv ZEND_OPTIMIZER 1
|
|
|
|
SetEnv MAGIC_QUOTES 0
|
2014-04-06 18:02:45 +02:00
|
|
|
|
2016-08-19 02:16:01 +02:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine on
|
|
|
|
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
|
|
|
|
</IfModule>
|
|
|
|
```
|
2015-11-06 23:21:27 +01:00
|
|
|
|
|
|
|
I want to send bookmarks to Pinboard. How do I find my Pinboard API token?
|
|
|
|
--------------------------------------------------------------------------
|
|
|
|
You can find your API token by going to [https://api.pinboard.in/v1/user/api_token/](https://api.pinboard.in/v1/user/api_token/).
|
|
|
|
|
2016-08-19 02:16:01 +02:00
|
|
|
Miniflux requires you to add your Pinboard username before this, followed by a colon (eg. bobsmith:12FC235692DF53DD1).
|