In all transfered Ads you get a Database Error if you open the Ad (View Page).
SELECT * FROM `bx_ads_main_media` WHERE `MediaID` =
to fix this problem open:
BxAdsDb.php
REPLACE:
function getMediaInfo($iMedId) {
$sMediaSQL = "SELECT * FROM `{$this->_oConfig->sSQLPostsMediaTable}` WHERE `MediaID` = {$iMedId}";
return $this->getRow($sMediaSQL);
}
WITH:
function getMediaInfo($iMedId) {
$sMediaSQL = "SELECT * FROM `{$this->_oConfig->sSQLPostsMediaTable}` WHERE `MediaID` = '{$iMedId}'";
return $this->getRow($sMediaSQL);
}
regard