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.