English 中文(简体)
Openx Ad Delivery Issues
原标题:

My System

  • Apache 2.2.9
  • PHP 5.2.9
  • MySQL client version: 5.1.28-rc
  • Openx v2.8.5

I am using the Javascript single page call to serve my ads. I am running an in house CMS where everything is processed through a template.php file.

My Issue The success of an ad being served seems to be very hit and miss. The placement or type of the ad does not seem to matter. For some reason, the loading of the ads is very spotty. Each page serves an average of 3 ads. Sometimes none show up, sometimes 2, sometimes 1. There does not seem to be any consistency in the problem occurring. The problem seems to have worsened since I updated to the most recent version and started using Single Page Call.

I have checked the source. All Javascript script is in place, but the ad content is not generated under the script where it should be. The space where the ad should be is just empty.

No Javascript errors are generated.

Any help will be greatly appreciated.

问题回答

For me, this happened when the campaigns assigned to the zone were all contract and there was no Remnants assigned. OpenX basically had no banners with impressions left to display.

Also, another time t his happened was with their implementation of Single Page Call. OpenX pre-loads all zones you have put into the array on every page, regardless of if they are displayed or not. So if you have a lot of zones, the ones near the end of the array can not get any ads because the ones above it take all the ads with impressions.

If you have a CMS with a lot of advertising zones, you re going to have to dynamically control the Javascript array to only load the zones needed for display on that specific page. I have a solution for Joomla if you need more details.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签