Ok, great a phpinfo and check for allow_url_open. ;-) Also, are you sure the other website is "up"?
On Fri, Apr 9, 2010 at 2:38 PM, Саша Стаменковић <[email protected]> wrote: > First one is false, second one gives IP. > > Regards, > Saša Stamenković > > > On Fri, Apr 9, 2010 at 2:35 PM, till <[email protected]> wrote: >> >> To test a connection, you can always try: >> <?php var_dump(fopen('http://url', 'r')); >> >> To test DNS: >> <?php >> var_dump(gethostbyname('example.org')); >> >> ... the first shouldn't be false, the second should be the IP of the >> domain. Most likely the same as if you run this code from "home". >> >> Till >> >> On Fri, Apr 9, 2010 at 2:03 PM, Саша Стаменковић <[email protected]> >> wrote: >> > When I change URL to any other site, it works, but for this particular >> > one, >> > it fails. >> > I don't have privileges to ping since I'm on shared hosting without SSH. >> > >> > Regards, >> > Saša Stamenković >> > >> > >> > On Fri, Apr 9, 2010 at 2:01 PM, Mario Guenterberg >> > <[email protected]> wrote: >> >> >> >> On Fr, Apr 09, 2010 at 10:11:00 +0200, Саша Стаменковић wrote: >> >> > Hi. >> >> > >> >> > I'm openin url like this with Zend_Http_Client >> >> > >> >> > >> >> > http://www.xxx.net/index.php?option=com_autoexp&page=show_search&mode=1&Itemid=54 >> >> > . >> >> > >> >> > This works perfect in my test environment (Windows), but on >> >> > production >> >> > (FreeBSD) I have this error: >> >> > >> >> > >> >> > 2010-04-09T08:14:48+02:00 ERR (3): exception >> >> > 'Zend_Http_Client_Adapter_Exception' with message 'Unable to Connect >> >> > to tcp://www.xxx.net:80. Error #60: Operation timed out' in >> >> > >> >> > >> >> > /www/webvol4/m9/4zjhf3no4hjbso9/automobi.li/library/Zend/Http/Client/Adapter/Socket.php:235 >> >> > Stack trace: >> >> > #0 >> >> > >> >> > /www/webvol4/m9/4zjhf3no4hjbso9/automobi.li/library/Zend/Http/Client.php(975): >> >> > Zend_Http_Client_Adapter_Socket->connect('www.xxx.n...', 80, false) >> >> > >> >> > ... >> >> > >> >> > similar error I get with curl adapter: >> >> > >> >> > >> >> > 2010-04-09T08:54:07+02:00 ERR (3): exception >> >> > 'Zend_Http_Client_Exception' with message 'Error in cURL request: >> >> > connect() timed out!' in >> >> > >> >> > >> >> > /www/webvol4/m9/4zjhf3no4hjbso9/automobi.li/library/Zend/Http/Client/Adapter/Curl.php:417 >> >> > Stack trace: >> >> > #0 >> >> > >> >> > /www/webvol4/m9/4zjhf3no4hjbso9/automobi.li/library/Zend/Http/Client.php(989): >> >> > Zend_Http_Client_Adapter_Curl->write('GET', Object(Zend_Uri_Http), >> >> > '1.1', Array, '') >> >> > >> >> > Test and production servers are in different countries, maybe site is >> >> > not accessible from production? >> >> > >> >> > Regards, >> >> > Saša Stamenković >> >> >> >> It looks like your firewall will not allowing outgoing connections. >> >> Your code seems okay, but you have no connection to the servers >> >> outside. >> >> >> >> Greetings >> >> Mario >> >> >> >> -- >> >> -----BEGIN GEEK CODE BLOCK----- >> >> Version: 3.12 >> >> GCS/CM d- s++: a+ C++++>$ UBL*++++$ P++ L+++ E--- W+++ N+ o-- K- w O- >> >> M- >> >> V-- PS++ PE++ Y PGP+++ t--- 5 X++++ R++ tv- b+++ DI D++++ G++ e* h---- >> >> r+++ y++++ >> >> ------END GEEK CODE BLOCK------ >> > >> > > >
