Get your own customer support community
 

proxy

Simplepie doesn't have support enabled for connection through a proxy, to add it the following needs to be added into the simpliepie.inc after line 7642

curl_setopt($fp, CURLOPT_PROXY, 'http://proxyhost:proxyport');

Where proxyhost: is the url of the proxy server and proxyport is the port on the proxy to use.

It would be good to add something like:

define(_PROXY_HOST,'http://www.example.com');
define(_PROXY_PORT,'8080');

and instead have this in Simplepie:

if(DEFINED(_PROXY_HOST) && DEFINED(_PROXY_PORT)){
curl_setopt($fp, CURLOPT_PROXY, '_PROXY_HOST:_PROXY_PORT');
}

I know this isn't really a Lilina issue however others may benefit.
 
happy I’m happy
Inappropriate?
2 people have this problem

The company has acknowledged this problem.


User_default_medium