file_get_contents works on Local but not on server

blytung picture blytung · Jun 11, 2012 · Viewed 33.6k times · Source

Possible Duplicate:
file_get_contents() error

Working on a script that connects to Instagram API to get photos from a certain tag. It works just fine on Local but on the server i get errors.

Warning: file_get_contents(): https:// wrapper is disabled in the server configuration by allow_url_fopen=0 in /storage/content/91/103391/instaboll.nu/public_html/instagram.php on line 19.

This is how line 19 looks:
$contents = file_get_contents("https://api.instagram.com/v1/tags/$tag/media/recent?client_id=$client_id");

Any ideas?

Have searched for this and find some posts that recommend curl, but have no idea how to proceed with that.

Answer

blytung picture blytung · Jun 11, 2012

I solved it with this code.

<?php
$url = "http://www.example.org/";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
$contents = curl_exec($ch);
if (curl_errno($ch)) {
  echo curl_error($ch);
  echo "\n<br />";
  $contents = '';
} else {
  curl_close($ch);
}

if (!is_string($contents) || !strlen($contents)) {
echo "Failed to get contents.";
$contents = '';
}

echo $contents;
?>