diff options
Diffstat (limited to 'docs/fr')
-rw-r--r-- | docs/fr/developer/api.rst | 3 | ||||
-rw-r--r-- | docs/fr/developer/rabbitmq.rst | 2 | ||||
-rw-r--r-- | docs/fr/developer/redis.rst | 2 | ||||
-rw-r--r-- | docs/fr/user/faq.rst | 7 |
4 files changed, 11 insertions, 3 deletions
diff --git a/docs/fr/developer/api.rst b/docs/fr/developer/api.rst index a0710a96..8a6e2a13 100644 --- a/docs/fr/developer/api.rst +++ b/docs/fr/developer/api.rst | |||
@@ -263,7 +263,8 @@ Ressources tierces | |||
263 | 263 | ||
264 | Certaines applications ou bibliothèques utilisent notre API. En voici une liste non exhaustive : | 264 | Certaines applications ou bibliothèques utilisent notre API. En voici une liste non exhaustive : |
265 | 265 | ||
266 | - `Java wrapper for the wallabag API <https://github.com/Strubbl/wallabag-java>`_ par Strubbl. | 266 | - `Java wrapper for the wallabag API <https://github.com/Strubbl/jWallabag>`_ par Strubbl. |
267 | - `.NET library for the wallabag v2 API <https://github.com/jlnostr/wallabag-api>`_ par Julian Oster. | 267 | - `.NET library for the wallabag v2 API <https://github.com/jlnostr/wallabag-api>`_ par Julian Oster. |
268 | - `Python API for wallabag <https://github.com/foxmask/wallabag_api>`_ par FoxMaSk, pour son projet `Trigger Happy <https://blog.trigger-happy.eu/>`_. | 268 | - `Python API for wallabag <https://github.com/foxmask/wallabag_api>`_ par FoxMaSk, pour son projet `Trigger Happy <https://blog.trigger-happy.eu/>`_. |
269 | - `Un plugin <https://github.com/joshp23/ttrss-to-wallabag-v2>`_ conçu pour `Tiny Tiny RSS <https://tt-rss.org/gitlab/fox/tt-rss/wikis/home>`_ qui utilise l'API wallabag v2. Par Josh Panter. | 269 | - `Un plugin <https://github.com/joshp23/ttrss-to-wallabag-v2>`_ conçu pour `Tiny Tiny RSS <https://tt-rss.org/gitlab/fox/tt-rss/wikis/home>`_ qui utilise l'API wallabag v2. Par Josh Panter. |
270 | - `Golang wrapper for the wallabag API <https://github.com/Strubbl/wallabago>`_ par Strubbl, pour son projet `wallabag-stats graphe <https://github.com/Strubbl/wallabag-stats>`_. | ||
diff --git a/docs/fr/developer/rabbitmq.rst b/docs/fr/developer/rabbitmq.rst index 92db5a28..b534a48b 100644 --- a/docs/fr/developer/rabbitmq.rst +++ b/docs/fr/developer/rabbitmq.rst | |||
@@ -37,7 +37,7 @@ Arrêter RabbitMQ | |||
37 | Configurer RabbitMQ dans wallabag | 37 | Configurer RabbitMQ dans wallabag |
38 | --------------------------------- | 38 | --------------------------------- |
39 | 39 | ||
40 | Modifiez votre fichier ``parameters.yml`` pour éditer la configuration RabbitMQ. Celle par défaut devrait convenir : | 40 | Modifiez votre fichier ``app/config/parameters.yml`` pour éditer la configuration RabbitMQ. Celle par défaut devrait convenir : |
41 | 41 | ||
42 | .. code:: yaml | 42 | .. code:: yaml |
43 | 43 | ||
diff --git a/docs/fr/developer/redis.rst b/docs/fr/developer/redis.rst index 8a212e8a..58204d57 100644 --- a/docs/fr/developer/redis.rst +++ b/docs/fr/developer/redis.rst | |||
@@ -28,7 +28,7 @@ Le serveur devrait déjà être démarré après l'installation. Si ce n'est pas | |||
28 | Configurer Redis dans wallabag | 28 | Configurer Redis dans wallabag |
29 | ------------------------------- | 29 | ------------------------------- |
30 | 30 | ||
31 | Modifiez votre fichier ``parameters.yml`` pour éditer la configuration Redis. Celle par défaut devrait convenir : | 31 | Modifiez votre fichier ``app/config/parameters.yml`` pour éditer la configuration Redis. Celle par défaut devrait convenir : |
32 | 32 | ||
33 | .. code:: yaml | 33 | .. code:: yaml |
34 | 34 | ||
diff --git a/docs/fr/user/faq.rst b/docs/fr/user/faq.rst index e220c8a7..49aa94ba 100644 --- a/docs/fr/user/faq.rst +++ b/docs/fr/user/faq.rst | |||
@@ -33,3 +33,10 @@ J'ai oublié mon mot de passe | |||
33 | Vous pouvez réinitialiser votre mot de passe en cliquant sur ``Mot de passe oublié ?``, | 33 | Vous pouvez réinitialiser votre mot de passe en cliquant sur ``Mot de passe oublié ?``, |
34 | sur la page de connexion. Ensuite, renseignez votre adresse email ou votre nom d'utilisateur, | 34 | sur la page de connexion. Ensuite, renseignez votre adresse email ou votre nom d'utilisateur, |
35 | un email vous sera envoyé. | 35 | un email vous sera envoyé. |
36 | |||
37 | J'ai l'erreur ``failed to load external entity`` quand j'essaie d'installer wallabag | ||
38 | ------------------------------------------------------------------------------------ | ||
39 | |||
40 | Comme décrit `ici <https://github.com/wallabag/wallabag/issues/2529>`_, modifiez le fichier ``web/app.php`` et ajoutez la ligne ``libxml_disable_entity_loader(false);`` à la ligne 5. | ||
41 | |||
42 | C'est un bug lié à PHP et Doctrine, nous ne pouvons rien faire de notre côté. | ||