For the life of me, I can't get this to work. Here is my phpinclude_start template:
PHP Code:
/*
// Example of how to include a seperate file:
ob_start();
include('yourheader.html');
$your_code = ob_get_contents();
ob_end_clean();
// Now place a reference to $your_code where you want the resulting HTML to be displayed.
// This will most likely be the header or footer template.
*/
if (@include(getenv('DOCUMENT_ROOT').'/a/phpadsnew.inc.php')) {
if (!isset($phpAds_context)) $phpAds_context = array();
$phpAds_raw = view_raw ('zone:24', 0, '', '', '0', $phpAds_context);
}
The invocation code was cut-and-pasted from phpAdsNew (which I've been using successfully with Javascript invocation for ages).
And here is a snippet from my footer template showing two different zones, one with local invocation and the other with javascript
:
PHP Code:
<!-- 120 x 600 zone -->
$phpAds_raw[html]
<br />
<!-- 120 x 240 zone -->
<script language='JavaScript' type='text/javascript'>
<!--
if (!document.phpAds_used) document.phpAds_used = ',';
phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
document.write ("http://www.bigblueball.com/a/adjs.php?n=" + phpAds_random);
document.write ("&what=zone:19");
document.write ("&exclude=" + document.phpAds_used);
if (document.referer)
document.write ("&referer=" + escape(document.referer));
document.write ("'><" + "/script>");
//-->
</script><noscript><a href='http://www.bigblueball.com/a/adclick.php?n=aa4c0db4' target='_blank'><img src='http://www.bigblueball.com/a/adview.php?what=zone:19&n=aa4c0db4' border='0' alt=''></a></noscript>
The javascript invocation method works fine, but not the local method. You can see this in action
here. Note that the ads actually appear in the right-hand column, even though the are part of the footer template.
Any ideas as to why I can't get local invocation to work?
EDIT: As a test, I tried local invocation on a non-forum page at the same site, and it works fine. You can see this on
http://www.bigblueball.com/index.php (it's serving the 120x90 ad in in the right column). Still can't get it to work in the forums though.
EDIT: After re-pasting the invocation code a second time, it seems to be working now. Nevermind.....