Boonex can't help with this. They do not have a way around using fopen but maybe someone here does. If I could just edit the footer that would be good too. My host has everything I need except fopen. They gave me this code to show Boonex but no luck:
My host says this about allow_url_fopen:
----
Our PHP is configured
with allow_url_fopen off due to security
considerations.
You will need
to use cURL to fetch the data instead of fopen(). Below
is an example of the
use of cURL in PHP. Let me know if you
have
questions.
<?php
$filename = "http://www.amazon.com/";
$curlHandle =
curl_init();
curl_setopt($curlHandle, CURLOPT_URL,
$filename);
curl_setopt($curlHandle, CURLOPT_HEADER,
0);
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER,
1);
curl_setopt($curlHandle, CURLOPT_USERAGENT, "FeedForAll
rss2html.php
v2");
curl_setopt($curlHandle, CURLOPT_REFERER,
$filename);
curl_setopt($curlHandle, CURLOPT_FOLLOWLOCATION,
1);
curl_setopt($curlHandle, CURLOPT_MAXREDIRS, 10);
$result =
curl_exec($curlHandle);
if
(curl_errno($curlHandle))
{
$GLOBALS["ERRORSTRING"] =
curl_error($curlHandle);
curl_close($curlHandle);
echo "<p>ERROR! "
. $GLOBALS["ERRORSTRING"] . "</p>\n";
}
else
{
echo
"RESULT<br>\n<p>" . $result .
"</p>\n";
}
curl_close($curlHandle);
?>