Hi again, i now have Ubuntu Feisty that comes with mono 1.2.3 and still i can't get Banshee to work behind a proxy. Michael Hutchinson wrote: On 11/28/06, "Andrés G. Aragoneses [ knocte ]" <knocte gmail com> wrote:Hugo Palma escribió:I have mono 2.0 and my http_proxy variable is set to the correct value. If i understood correctly it should work for me right ?Mono 2.0 doesn't exist (yet).To elaborate on this, the "mono 2.0 profile" refers to mono's support for the CLR and class libraries version 2.0. This is not the same as Mono's version number. Note that MS do this too -- .NET 3 contains CLR version 2.0... http_proxy will only be detected under the 2.0 profile if your Mono runtime is version 1.2 or greater. However, it's been working under the 1.0 profile since 1.1.13 or something like that, so if you get a version old enough that the 1.1 and 2.0 profiles shared the same config code it would work with that too :) If you don't want to install a newer version of Mono (the current stable version is 1.2.1), just edit /etc/mono/2.0/machine.config, and add proxyaddress to the proxy element: <proxy proxyaddress = "http://your.proxy.address:port" usesystemdefault = "true" bypassonlocal = "true" /> |