XF 1.5 AutoChange links do not work when HTTPS is installed

micron

Member
On the forum https. Redirected from http to https. If I publish a link with https, auto-replace does not work. If the link is http, AutoCorrect works! What's the matter?
 
ReCAPTCHA (No CAPTCHA) connection error: Unable to Connect to ssl://www.google.com:443. Error #0:
03:26 - library/Zend/Http/Client/Adapter/Socket.php:235


Is this error related to what I'm asking about in this thread?
suspect could be your IPv6 network connectivity on your server being broken or misconfigured

do a quick curl header check against google
Code:
curl -Iv https://www.google.com/
should return something like below trying to connect to IPv6 address first, if IPv6 isn't working on your server, it will fall back to IPv4 address of www.google.com
Code:
curl -Iv https://www.google.com/
* About to connect() to www.google.com port 443 (#0)
*   Trying 2a00:1450:401b:802::2004...
* Connected to www.google.com (2a00:1450:401b:802::2004) port 443 (#0)
* Initializing NSS with certpath: sql:/etc/pki/nssdb
*   CAfile: /etc/pki/tls/certs/ca-bundle.crt
CApath: none
* SSL connection using TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
this is one possibility
 
Prompt, where and how correctly to insert in php.ini:
curl_setopt ($ch, CURLOPT_CAINFO, '\etc\ssl\ca-root.pem')

Which module on the server is responsible for proxying?
 
Top Bottom