Al wrote: > I have a script that needs to read the output, not the file itself, from a > local > php file using its absolute address. > > Normally I'd simply use $handle= fopen(http://www.whatever.com, 'rb') > > However, the webhost [Powweb] just changed their system to use "load > balancing" > servers. Now, my script must use the fopen() with a hack as such: > > $handle= fopen(http://local.whatever.com, "rb") > > But, but, it doesn't work when my script is started from a cronjob, only > from a > remote browser. It's hard to imagine how PowWeb could have DNS local.whatever.com resolve OK in PHP, but not from cron... In a shell prompt, what does: nslookup local.whatever.com dig local.whatever.com ping local.whatever.com tell you? Can you use wget to download the URL? It really sounds to me more like a question for PowWeb than us... I mean, only they can tell you what they've done to hack their DNS like that. -- Like Music? http://l-i-e.com/artists.htm -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php