SMFHacks.com

SMF Gallery Pro => Support => Topic started by: mickjav on February 25, 2023, 06:43:28 am

Title: Error With View Image
Post by: mickjav on February 25, 2023, 06:43:28 am
[attach=1][attach=2]
Title: Re: Error With View Image
Post by: mickjav on February 25, 2023, 07:01:41 am
Seems to have cleared now must have caught a reboot or something  :-\
Title: Re: Error With View Image
Post by: SMFHacks on February 25, 2023, 09:07:08 am
Could be an api limit. To avoid in the future you can change the tinyurl function in Sources/Gallery2.php to

Code: [Select]
function gallery_getTinyUrl($url)
{

return $url;

if (function_exists('file_get_contents') && ini_get('allow_url_fopen') == 1)
{
$tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url=".$url);
return $tinyurl;
}
else
return $url;
}