Jump to content

patmmccann

Approved members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by patmmccann

  1. I am having a similar issue with IE 11  and ajs.php. It contains the same function. My invocation code for ads doesn't render ads for IE 11 users. 

     

     cat /var/www/html/adserver/www/delivery/ajs.php | grep setcookie -A 10 -B 10
    }
    }
    function MAX_cookieClientCookieSet($name, $value, $expire, $path = '/', $domain = null)
    {
     if (isset($GLOBALS['_OA']['invocationType']) && $GLOBALS['_OA']['invocationType'] == 'xmlrpc') {
    if (!isset($GLOBALS['_OA']['COOKIE']['XMLRPC_CACHE'])) {
    $GLOBALS['_OA']['COOKIE']['XMLRPC_CACHE'] = array();
    }
    $GLOBALS['_OA']['COOKIE']['XMLRPC_CACHE'][$name] = array($value, $expire);
    } else {
    @setcookie($name, $value, $expire, $path, $domain);
    }
    }
    function MAX_cookieClientCookieUnset($name)
    {
    $conf = $GLOBALS['_MAX']['CONF'];
    $domain = (!empty($conf['cookie']['domain'])) ? $conf['cookie']['domain'] : null;
    MAX_cookieSet($name, false, _getTimeYearAgo(), '/', $domain);
    MAX_cookieSet(str_replace('_', '%5F', urlencode($name)), false, _getTimeYearAgo(), '/', $domain);
    }
    function MAX_cookieClientCookieFlush()
  2. Hi, 

     

    How do I make a call to Revive get back just the html markup without the surrounding javascript and document.write? 
     

    If I make a call to my revive server like this

     
     
    Revive responds with my ad tags like this:
    var OX_e8dfae13 = '';
    OX_e8dfae13 += "<"+"SCRIPT language=\'JavaScript1.1\' SRC=\"https://ad.doubleclick.net/ddm/adj/N3550.Mycompany/B8580297.115978186;sz=728x90;click0={clkurl};ord=56ae2d202d?\">\n";
    OX_e8dfae13 += "<"+"/SCRIPT>\n";
    OX_e8dfae13 += "<"+"div id=\'beacon_56ae2d202d\' style=\'position: absolute; left: 0px; top: 0px; visibility: hidden;\'><"+"img src=\'https://revive.myhost.com/adserver/www/delivery/lg.php?bannerid=7&amp;campaignid=1&amp;zoneid=7&amp;cb=56ae2d202d\' width=\'0\' height=\'0\' alt=\'\' style=\'width: 0px; height: 0px;\' /><"+"/div>\n";
    document.write(OX_e8dfae13);
     
    A call to avw.php?zoneid=7 has no results. 
     
    Thanks, 
    Patrick
×
×
  • Create New...