There is a coding bug in ame_bbcode.php. This bug affects all remote web page extraction of information when the server where this plugin is running has the php parameter 'allow_url_fopen' set to false.
The function starts which starts with this:
PHP Code:
function ame_fetch_www_page($url)
{
if (function_exists("curl_int"))
needs to be changed to this:
PHP Code:
function ame_fetch_www_page($url)
{
if (function_exists("curl_init"))