Hi,
for development we use a copy of our original EspoCRM.
In this case the certificate does not fit the test url.
All my Workflows and Flowcharts are not working anymore, because off the cert check.
For this I 'extended' SendRequest.php:
And later
If this would be setable via the GUI, it would be a great help.
Yesterday after update to 9.1.7 I had to overwrite the SendRequest.php again.
Best regards
for development we use a copy of our original EspoCRM.
In this case the certificate does not fit the test url.
All my Workflows and Flowcharts are not working anymore, because off the cert check.
For this I 'extended' SendRequest.php:
Code:
use const CURLOPT_SSL_VERIFYPEER; use const CURLOPT_SSL_VERIFYHOST;
Code:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
Yesterday after update to 9.1.7 I had to overwrite the SendRequest.php again.
Best regards
Comment