经过漫长的旅程后,我设法结合 jquery 和 php 来 ajax 加载我的 openx-ads。
你需要的是
- 您自己的 openx 服务器并访问 /{openxPath}/www/delivery/alocal.php。
- 使广告脚本 ajaxable 的小包装器
- 一个ajax加载器
第三个也是最简单的部分是 ajax-loader:
$(document).ready( function() {
$.ajax({
url: "http://{urlToYourOpenxWrapper/adwrapper.php",
type: "POST",
data: {m:'f'}, // 'code' of ad to load
async: false,
dataType: 'html'
}).done(function (answer) {
$('#footerBanner').html(answer);
});
});
第二部分有点棘手,可能不是面向未来的。但对于 2.8.11,它正在工作。出于安全原因,我进行了从字符到区域 ID 的映射。我不知道这是否真的有必要。
adwrapper.php:
define('MAX_PATH', 'pathToYoutOpenXServer');
if (@include_once(MAX_PATH . '/www/delivery/alocal.php')) {
if (!isset($phpAds_context)) {
$phpAds_context = array();
}
switch ($_POST["m"]) {
case 'f': // code of the ad to load
$zoneId = 12;
$bannerTarget = 'footerBanner zone_' . $zoneId;
$bannerCode = view_local('', 12, 0, 0, '', '', '0', $phpAds_context, '');
break;
}
// get banner id
$regex = '/(.*)(ox_[^\']*)(.*)/';
preg_match($regex, $bannerCode['html'], $matches);
$oxId = $matches[2];
// compile new insert code
$replaceWith = '$("' . $oxId . '").after';
$banner = str_replace('document.write', $replaceWith, $bannerCode['html']);
$banner = str_replace('<script type=\'text/javascript\' src=\'http://openx.lift-online.de/www/delivery/fl.js\'></script>' ,
'<!-- replaced -->' ,
$banner);
// use a single object for each ad to prevent problem in multitasking
$banner = str_replace('ox_swf', 'ox_swf_' . $zoneId, $banner);
// sometime the oxId (unique Id???) is the same and than zones are mixed
// so I append the zoneId to the oxId
$banner = str_replace($oxId, $oxId . '_' . $zoneId, $banner);
echo '<div class="' . $bannerTarget . '">' . $banner . '</div>';
}