Can joomla be configured to browser through a proxy server

joomlaPROXY

In wordpress there are some simple variables that can be set to make the configuration of a navigation proxy server trivial.

var $proxy_host = ""; // proxy host to use
var $proxy_port = ""; // proxy port to use
var $proxy_user = ""; // proxy user to use
var $proxy_pass = ""; // proxy password to use

Are there any equivalents to accomplish the same for joomla?
I've been searching on internet and couldn't find anything.

For the original wordpress source see here

Best Answer

I am currently using this to set the proxy with my servers, it works on everythin except for joomla, so there's probably something being force in joomla's side.

http://php.net/manual/en/function.stream-context-set-default.php

Related Topic