OpenX:允许横幅链接使用显示横幅的页面的主机

发布于 2024-09-18 13:49:44 字数 666 浏览 8 评论 0原文

我的客户有一个包含许多子域的网站,每个子域代表不同的“客户端”:

http://www.store.com <- 总店;也是管理中默认的 OpenX“网站”主机。
http://client1.store.com <- 客户端商店
http://client2.store.com <- 客户端商店
...
http://client222.store.com <- 客户端商店

很多横幅都是内部链接。对于这些内部广告,他们在该横幅的“目标 URL”字段中使用相对 URL,希望该链接将使用广告所显示的页面的主机。但无济于事,这些广告似乎总是使用该区域所连接的 OpenX“网站”的主机。

因此,对于这些本地广告,我需要目标 URL 的主机来匹配广告所显示的页面。有什么建议吗?

My client has a website with many subdomains, each representing a different "client":

http://www.store.com <- Main store; also the default OpenX "Website" host in admin.
http://client1.store.com <- Client store
http://client2.store.com <- Client store
...
http://client222.store.com <- Client store

A lot of the banners are internal links. For those internal ads, they use relative URLs in that banner's "Destination URL" field, in hopes that the link will use the host of the page the ad is being displayed on. But to no avail, the ads seem to always use the host of the OpenX "Website" that that zone is connected to.

So for these local ads I need the host of the destination URLs to match the page the ads is being displayed on. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多像笑话 2024-09-25 13:49:44

这个问题的答案是将横幅的 URL 设置为如下所示:

http://{currenthost}/shoes-half-off

然后将额外的自定义变量 currenthost 传递到调用代码中。

如果区域处于本地模式,

请在调用 view_local() 之前的某个位置设置如下变量:

$_REQUEST['currenthost'] = $_SERVER['HTTP_HOST'];
$raw = view_local($what, $zoneid, $campaignid, // ...

如果区域处于 Javascript 模式,

则将其传递到 openx/www/delivery/ajs。 php 作为 GET 字符串的一部分。把这个:

// ...
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("'><\/scr"+"ipt>");
// ...

变成这个:

// ...
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("&currenthost="+window.location.href); // <-- Added
document.write ("'><\/scr"+"ipt>");
// ...

The answer to this question was to set the Banner's URL to something like this:

http://{currenthost}/shoes-half-off

Then pass extra, custom variable currenthost into the invocation code.

If the zone is in Local Mode

Set the variable like this, somewhere before your call to view_local():

$_REQUEST['currenthost'] = $_SERVER['HTTP_HOST'];
$raw = view_local($what, $zoneid, $campaignid, // ...

If the zone is in Javascript Mode

Pass it into openx/www/delivery/ajs.php as a part of the GET string. Turn this:

// ...
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("'><\/scr"+"ipt>");
// ...

Into this:

// ...
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("&currenthost="+window.location.href); // <-- Added
document.write ("'><\/scr"+"ipt>");
// ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文