From 5180b7c9dc59c2932c95738d82c150ec18bea88a Mon Sep 17 00:00:00 2001 From: Julien Castiaux Date: Thu, 14 Jul 2022 11:31:39 +0000 Subject: [PATCH] [IMP] developer/api/external_api: XML-RPC in PHP8 Starting PHP8, the XML-RPC extension is not available by default anymore and must be installed separately. closes odoo/documentation#2718 Task: 2613818 X-original-commit: 79e58e3db17c990b47e5a03f8f24354a2808dc1d Signed-off-by: Antoine Vandevenne (anv) --- content/developer/api/external_api.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/developer/api/external_api.rst b/content/developer/api/external_api.rst index 202070bc8..53e544d37 100644 --- a/content/developer/api/external_api.rst +++ b/content/developer/api/external_api.rst @@ -7,6 +7,11 @@ all of its data are also available from the outside for external analysis or integration with various tools. Part of the :ref:`reference/orm/model` API is easily available over XML-RPC_ and accessible from a variety of languages. +.. important:: + Starting with PHP8, the XML-RPC extension may not be available by default. + Check out the `manual `_ + for the installation steps. + .. seealso:: - :doc:`Tutorial on web services <../howtos/web_services>`