hacked it to use cURL, only took 2 seconds.
open includes/ame_bbcode.php
add under very top comments:
Code:
function curl_get_file_contents($URL)
{
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $URL);
$contents = curl_exec($c);
curl_close($c);
if ($contents) return $contents;
else return FALSE;
}
find:
Code:
$www = @file_get_contents
replace with:
Code:
$www = @curl_get_file_contents
Done. Uses cURL, no problems with fetching, no need to mess around with PHP settings or anything.
Such an easy fix, might want to include it in an update perhaps, Geek?