Gangstamonu adlı üyeden alıntı: mesajı görüntüle
dreamhost'ta rss ile sitelerime bi şey çekemiyorum nasıl yapıcam ben
verdiği hatayı yazarsan yardımcı olabilirim.sistemi incelemedim ama muhtemelen rss yi file_get_content ile açıyordurki dreamhost ta aktif değil bunun yerine curl ile kaynağa erişebilirsin

<?php
$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, 'http://example.com');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);

// display file
echo $file_contents;
?>
yada işi garantiye alıp her ikisininde varlıgını araştırabilrisin
    public function getUrl($url) {
        $text='';
        if (function_exists('curl_init')) {
            $ch = curl_init($url);
            curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
            curl_setopt($ch, CURLOPT_HEADER, 0);
            $text = curl_exec($ch);
            curl_close($ch);
        }
        else {
            $text =  @file_get_contents($url) or die($url . ' can not be reached');
        }
        return $text;
    }
http://wiki.dreamhost.com/index.php/CURL