RE: [PHP] remote fopen not working, despite allow_url_fopen = on

2007-02-15 Thread Aras
Alex, Either the domain you are trying to fetch data is unknown or your resolver settings do not point to a regular resolving server. (check /etc/resolv.conf) Aras Koktas [EMAIL PROTECTED] Business Excellence Development Phi.dot Internet Systems -Original Message- From: alex handle

Re: [PHP] remote fopen not working, despite allow_url_fopen = on

2007-02-15 Thread alex handle
On 2/15/07, Aras [EMAIL PROTECTED] wrote: Alex, Either the domain you are trying to fetch data is unknown or your resolver settings do not point to a regular resolving server. (check /etc/resolv.conf) Aras Koktas [EMAIL PROTECTED] Business Excellence Development Phi.dot Internet Systems

RE: [PHP] remote fopen not working, despite allow_url_fopen = on

2007-02-15 Thread Aras
@lists.php.net Subject: Re: [PHP] remote fopen not working, despite allow_url_fopen = on Hello Aras! my /etc/resolv.conf is ok - a host google.com works and i can reach google.com with lynx. There are no firewall or dns issues on the server. -- PHP General Mailing List (http://www.php.net

Re: [PHP] remote fopen not working, despite allow_url_fopen = on

2007-02-15 Thread cajbecu
Hello Aras! my /etc/resolv.conf is ok - a host google.com works and i can reach google.com with lynx. There are no firewall or dns issues on the server. try: var_dump(file('http://ip_google/')); replace ip_google with google`s main ip. cajb. -- PHP General Mailing List

Re: [PHP] remote fopen not working, despite allow_url_fopen = on

2007-02-15 Thread alex handle
On 2/15/07, cajbecu [EMAIL PROTECTED] wrote: Hello Aras! my /etc/resolv.conf is ok - a host google.com works and i can reach google.com with lynx. There are no firewall or dns issues on the server. try: var_dump(file('http://ip_google/')); replace ip_google with google`s main ip.