1/*
2 Tripple check that you have allow_url_fopen=on; setup on your server.
3 Even if it is set in your .ini file, it still may not be active.
4 You can create a new file called php.info with the code below,
5 and visit the file once it is added to your server,
6 this will allow you to check for certain if allow_url_fopen is set to
7 "on"(good) or "off"(bad - call your host to rectify this)
8*/
9
10<?php phpinfo(); ?>
11
12/*
13 NB!! Do NOT forget to remove this file once you are finished, as
14 it exposes "interesting" information about your server setup...
15 which is not great! So, use it, then remove it!
16*/