I havent been able to get any gz function to work on my website.
i get
Fatal error: Call to undefined function:
I made this simple code just to test the gzfile function and it fails too.
$planets = gzopen("planet_listing.gz", "r");
$contents = gzread ($planets, 1000);
gzclose ($contents);
echo "$contents";