Hi,
1. Create backup of your website
2. Update Gallery component to latest version, install latest version above your current version
3. Clear Joomla and Browser cache
If update will not help you
4. Go to:
administrator >>
components >>
com_bagallery >>
helpers >>
bagallery.php
5. Comment, using /* */ Lines from 81 to 100
public static function checkUpdate($version)
{
$version = str_replace('.', '', $version);
$url = 'http://www.balbooa.com/updates/bagallery/com_bagallery_update.xml';
$curl = self::getContentsCurl($url);
$xml = simplexml_load_string($curl);
$newVersion = (string)$xml->version;
$newVersion = str_replace('.', '', $newVersion);
$exp = strlen($version);
$pow = pow(10, $exp);
$version = $version / $pow;
$exp = strlen($newVersion);
$pow = pow(10, $exp);
$newVersion = $newVersion / $pow;
if ($newVersion > $version) {
return false;
} else {
return true;
}
}
Regards,