You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2019. It is now read-only.
This sets the port to 80, when it should of course be 443!
Line 511 of src/AdvancedStore/Oauth2Client/Oauth2Client.php: curl_setopt($ch, CURLOPT_PORT, $_SERVER['SERVER_PORT']);
Removing this line of code solved my issues, I can't see a reason why it would be needed given CURL can figure out the port auto-magically based on the protocol.
The text was updated successfully, but these errors were encountered:
This line breaks functionality with connecting to SSL servers from a non-SSL connection:
i.e.
http://localhost - Connecting from
https://www.example.com - Connecting to
This sets the port to 80, when it should of course be 443!
Line 511 of src/AdvancedStore/Oauth2Client/Oauth2Client.php:
curl_setopt($ch, CURLOPT_PORT, $_SERVER['SERVER_PORT']);
Removing this line of code solved my issues, I can't see a reason why it would be needed given CURL can figure out the port auto-magically based on the protocol.
The text was updated successfully, but these errors were encountered: