Installation

Available in all platform

Highly secured setup

Implemented performance tweaks

Customization

Available in all version

Compatible coding standard

Language translation support

Support

Highly experienced OpenX experts

Available for any category of openx

24/7 support for openx

Invocation Codes

Pop up Invocation Tag

OpenX supports pop-up zones which can be used only with JavaScript type of invocation code. You will have to enable the pop-up zone in order to display the pop-up zone option in zone edit page. To enable the pop-up zone you can refer: http://openxaddons.com/content/enable-different-types-invocation-code

Local Mode Tags

Local mode tags are needed to be used by the advanced users having a basic understanding of PHP programming.
A default local mode tag looks like this:
<?php
  // The MAX_PATH below should point to the base of your OpenX installation
  define('MAX_PATH', '/path/to/openx');
  if (@include_once(MAX_PATH . '/www/delivery/alocal.php')) {

Enable different types of invocation code

To enable the different types of invocation tags for the zones, go to administrator account:

  • Click on the Plugins tab
  • Click on the Details link for the plugin openXInvocationTags
  • Click on the Settings link
Here you will find the different kinds of invocation code.

XML-RPC Tags

  
The XML-RPC Tag is similar to a local-mode tag but can be used for ads stored on a remote server. An XML-RPC Tags can be written in any language to read and print the data returned by OpenX. XML-RPC is simply a protocol which uses XML to encode the calls and HTTP as a transport mechanism (http://en.wikipedia.org/wiki/XML-RPC).
The XML-RPC tags generated by OpenX contains a comment above it with tips on placing the tag on your website. An example of PHP script for OpenX XML-RPC tag (with the comment block removed) is shown below:
 
  <?php
  //ini_set('include_path', '.:/usr/local/lib');
  require 'openads-xmlrpc.inc.php';
  if (!isset($OA_context)) $OA_context = array();
  $oaXmlRpc = new OA_XmlRpc('localhost', '/openads/www/delivery/axmlrpc.php', 0, false, 15);
  $adArray = $oaXmlRpc->view('zone:5', 0, '', '', 0, $OA_context);
  echo $adArray['html'];
  ?>
 
Syndicate content