Disable open_basedir or manually adjust the following locations by commenting out those lines of code so that property won't be allowed. It may negatively impact the functionality of the plugin though.
IN: components/com_comprofiler/plugin/user/plug_cbconnect/library/Hybridauth/HttpClient/Curl.php
ON: Line 30
FROM:
Code:
CURLOPT_FOLLOWLOCATION => true,
TO:
Code:
//CURLOPT_FOLLOWLOCATION => true,
IN: components/com_comprofiler/plugin/user/plug_cbconnect/library/Hybridauth/Thirdparty/OpenID/LightOpenID.php
ON: Line 175
FROM:
Code:
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
TO:
Code:
//curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
I'll be able to implement for next CB Connect 7.x beta to automatically disable this for the first edit, but the second edit does not offer a way to disable it easily so it can only be partially fixed for now.
forge.joomlapolis.com/issues/5369