2

I am trying to install some Magento extensions however it keeps timing out. When I run a trace through ISA Server 2004 I can't see any denied traffic. The only thing I do get is a http proxy closed status:

A connection was abortively closed after one of the peers sent a RST segment.

I can't tell what I need to open as both HTTP and HTTPS are allowed.

Cheers

splattne
  • 28,776

2 Answers2

1

to download updates using magento connect behind a proxy

you will have to edit file: /downloader/lib/Mage/HTTP/Client/curl.php

and after the line $this->_ch = curl_init();

you will need to add

$this->curlOption(CURLOPT_PROXY, “YourProxy:YourProxyPort");
$this->curlOption(CURLOPT_PROXYUSERPWD, “YourUser:YourPassword"); // if needed 
Matias
  • 11
1

I have no idea what "magento extensions" are, but if you're having problems communicating with the Internet on a host behind a firewall, regardless of the type of firewall, I'd recommend firing up a sniffer on the host and watching the outbound traffic. It's a lot easier, to me, than trying to grub around in firewall logs figuring out what's getting dropped. Wireshark, tcpdump, Network Monitor, etc, are your friends for this.

Evan Anderson
  • 142,957