From 2cb57f2a4048b786f099ba1b7d458acee59f0d07 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 14 Feb 2017 16:23:02 +0100 Subject: [PATCH 1/3] Added a note about the usual cURL certificate problem --- setup.rst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/setup.rst b/setup.rst index c7d650424a7..27ec0589da1 100644 --- a/setup.rst +++ b/setup.rst @@ -62,6 +62,28 @@ to meet those requirements. If the installer doesn't work for you or doesn't output anything, make sure that the PHP `Phar extension`_ is installed and enabled on your computer. +.. note:: + + If the SSL certificates are not properly installed in your system, you + may get this error: + + cURL error 60: SSL certificate problem: unable to get local issuer certificate. + + Solve this issue as follows: + + #. Download a file with the updated list of certificates from + https://curl.haxx.se/ca/cacert.pem + #. Move the downloaded ``cacert.pem`` file to some safe location in your system + #. Update your ``php.ini`` file and configure the path to that file: + + .. code-block:: ini + + ; Linux and macOS systems + curl.cainfo = "/path/to/cacert.pem" + + ; Windows systems + curl.cainfo = "C:\path\to\cacert.pem" + Basing your Project on a Specific Symfony Version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From a8fb7eace66b3a4541eac17f757d87c4881e23ab Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 14 Feb 2017 16:24:18 +0100 Subject: [PATCH 2/3] Minor reword --- setup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.rst b/setup.rst index 27ec0589da1..8165698dbd8 100644 --- a/setup.rst +++ b/setup.rst @@ -69,7 +69,7 @@ to meet those requirements. cURL error 60: SSL certificate problem: unable to get local issuer certificate. - Solve this issue as follows: + You can solve this issue as follows: #. Download a file with the updated list of certificates from https://curl.haxx.se/ca/cacert.pem From eb3dc23c695a75fa107aa4ad88b56cbb05a014ef Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 16 Feb 2017 19:50:12 +0100 Subject: [PATCH 3/3] Minor fixes --- setup.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.rst b/setup.rst index 8165698dbd8..16bf5ac847e 100644 --- a/setup.rst +++ b/setup.rst @@ -76,13 +76,13 @@ to meet those requirements. #. Move the downloaded ``cacert.pem`` file to some safe location in your system #. Update your ``php.ini`` file and configure the path to that file: - .. code-block:: ini + .. code-block:: ini - ; Linux and macOS systems - curl.cainfo = "/path/to/cacert.pem" + ; Linux and macOS systems + curl.cainfo = "/path/to/cacert.pem" - ; Windows systems - curl.cainfo = "C:\path\to\cacert.pem" + ; Windows systems + curl.cainfo = "C:\path\to\cacert.pem" Basing your Project on a Specific Symfony Version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~