From 37da178696c2f23b8a3b85f10e3c885ecf425173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 27 Oct 2016 14:46:21 +0200 Subject: Added the whole path to parameters.yml file --- docs/en/developer/rabbitmq.rst | 2 +- docs/en/developer/redis.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/en') diff --git a/docs/en/developer/rabbitmq.rst b/docs/en/developer/rabbitmq.rst index 673228e9..7ee8a5ce 100644 --- a/docs/en/developer/rabbitmq.rst +++ b/docs/en/developer/rabbitmq.rst @@ -37,7 +37,7 @@ Stop RabbitMQ Configure RabbitMQ in wallabag ------------------------------ -Edit your ``parameters.yml`` file to edit RabbitMQ configuration. The default one should be ok: +Edit your ``app/config/parameters.yml`` file to edit RabbitMQ configuration. The default one should be ok: .. code:: yaml diff --git a/docs/en/developer/redis.rst b/docs/en/developer/redis.rst index 2e2bbbea..ea084e66 100644 --- a/docs/en/developer/redis.rst +++ b/docs/en/developer/redis.rst @@ -28,7 +28,7 @@ The server might be already running after installing, if not you can launch it u Configure Redis in wallabag --------------------------- -Edit your ``parameters.yml`` file to edit Redis configuration. The default one should be ok: +Edit your ``app/config/parameters.yml`` file to edit Redis configuration. The default one should be ok: .. code:: yaml -- cgit v1.2.3 From a40b2b7ee4f5aec502c4ddc755ed7d15f9b7a756 Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Sat, 29 Oct 2016 19:59:05 +0200 Subject: docs: update 3rd party projects by Strubbl --- docs/en/developer/api.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/en') diff --git a/docs/en/developer/api.rst b/docs/en/developer/api.rst index 4828cddd..d61591f4 100644 --- a/docs/en/developer/api.rst +++ b/docs/en/developer/api.rst @@ -263,7 +263,8 @@ Third party resources Some applications or libraries use our API. Here is a non-exhaustive list of them: -- `Java wrapper for the wallabag API `_ by Strubbl. +- `Java wrapper for the wallabag API `_ by Strubbl. - `.NET library for the wallabag v2 API `_ by Julian Oster. - `Python API for wallabag `_ by FoxMaSk, for his project `Trigger Happy `_. - `A plugin `_ designed for `Tiny Tiny RSS `_ that makes use of the wallabag v2 API. By Josh Panter. +- `Golang wrapper for the wallabag API `_ by Strubbl, for his project `wallabag-stats graph`_. -- cgit v1.2.3 From 90ec78f05aa0b20b98c0ca9030c7a69817e7602a Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Sun, 30 Oct 2016 12:01:24 +0100 Subject: docs: fix link to wallabag-stats project --- docs/en/developer/api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/en') diff --git a/docs/en/developer/api.rst b/docs/en/developer/api.rst index d61591f4..b6c9ed3f 100644 --- a/docs/en/developer/api.rst +++ b/docs/en/developer/api.rst @@ -267,4 +267,4 @@ Some applications or libraries use our API. Here is a non-exhaustive list of the - `.NET library for the wallabag v2 API `_ by Julian Oster. - `Python API for wallabag `_ by FoxMaSk, for his project `Trigger Happy `_. - `A plugin `_ designed for `Tiny Tiny RSS `_ that makes use of the wallabag v2 API. By Josh Panter. -- `Golang wrapper for the wallabag API `_ by Strubbl, for his project `wallabag-stats graph`_. +- `Golang wrapper for the wallabag API `_ by Strubbl, for his project `wallabag-stats graph `_. -- cgit v1.2.3 From 585fd2a4ad39b40413c61d1a8e00bd7507a87833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Wed, 2 Nov 2016 16:58:20 +0100 Subject: Added documentation about failed to load external entity error Fix #2529 --- docs/en/user/faq.rst | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docs/en') diff --git a/docs/en/user/faq.rst b/docs/en/user/faq.rst index 61303604..b759ed1b 100644 --- a/docs/en/user/faq.rst +++ b/docs/en/user/faq.rst @@ -46,3 +46,8 @@ I forgot my password You can reset your password by clicking on ``Forgot your password?`` link, on the login page. Then, fill the form with your email address or your username, you'll receive an email to reset your password. + +I've got the ``failed to load external entity`` error when I try to install wallabag +------------------------------------------------------------------------------------ + +As described `here `_, please edit your ``web/app.php`` file and add this line: ``libxml_disable_entity_loader(false);`` on line 5. -- cgit v1.2.3 From 4b5e95c0e52d0627f33cae7cb5f486a53561f5c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Wed, 2 Nov 2016 17:02:48 +0100 Subject: Added more info about Doctrine / PHP bug --- docs/en/user/faq.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docs/en') diff --git a/docs/en/user/faq.rst b/docs/en/user/faq.rst index b759ed1b..0f995ce5 100644 --- a/docs/en/user/faq.rst +++ b/docs/en/user/faq.rst @@ -51,3 +51,5 @@ I've got the ``failed to load external entity`` error when I try to install wall ------------------------------------------------------------------------------------ As described `here `_, please edit your ``web/app.php`` file and add this line: ``libxml_disable_entity_loader(false);`` on line 5. + +This is a Doctrine / PHP bug, nothing we can do about it. -- cgit v1.2.3