MESSAGE: Undefined index: deliveryLog
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/max/Delivery/remotehost.php
LINE: 75
DEBUG INFO:

70 {
71 $conf = $GLOBALS['_MAX']['CONF'];
72 // Should proxy lookup conversion be performed?
73 if ($conf['logging']['proxyLookup']) {
74 ###START_STRIP_DELIVERY

75 if ($conf['deliveryLog']['enabled']) {

76 OA::debug('checking remote host proxy');
77 }
78 ###END_STRIP_DELIVERY
79 // Determine if the viewer has come via an HTTP proxy
80 $proxy = false;



MESSAGE: Undefined index: ssl
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 360
DEBUG INFO:

355 if (is_null($aConf)) {
356 $aConf = $GLOBALS['_MAX']['CONF'];
357 }
358 $dbType = $aConf['database']['type'];
359 if (strcasecmp($dbType, 'mysql') === 0) {

360 if ($aConf['database']['ssl'] && !empty($aConf['database']['ca']) && !empty($aConf['database']['capth'])) {

361 $aDriverOptions['ssl'] = true;
362 $aDriverOptions['ca'] = $aConf['database']['ca'];
363 $aDriverOptions['capath'] = $aConf['database']['capth'];
364 }
365 if ($aConf['database']['compress']) {



MESSAGE: Undefined index: compress
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 365
DEBUG INFO:

360 if ($aConf['database']['ssl'] && !empty($aConf['database']['ca']) && !empty($aConf['database']['capth'])) {
361 $aDriverOptions['ssl'] = true;
362 $aDriverOptions['ca'] = $aConf['database']['ca'];
363 $aDriverOptions['capath'] = $aConf['database']['capth'];
364 }

365 if ($aConf['database']['compress']) {

366 $aDriverOptions['compress'] = true;
367 }
368 }
369 return $aDriverOptions;
370 }



MESSAGE: Undefined index: ssl
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 105
DEBUG INFO:

100 // configuration file
101 $aDSN = MDB2::parseDSN($dsn);
102 $databaseType = $aDSN['phptype'];
103
104 // Is this a MySQL database connection that should happen via SSL?

105 if ((strcasecmp($databaseType, 'mysql') === 0) && ($aDriverOptions['ssl'])) {

106 // Modify the DSN string to include the required CA and CAPATH options
107 if (!empty($aDriverOptions['ca']) && !empty($aDriverOptions['capath'])) {
108 $dsn .= "?ca={$aDriverOptions['ca']}&capth={$aDriverOptions['capath']}";
109 }
110 }



MESSAGE: Undefined index: ssl
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 167
DEBUG INFO:

162 $aOptions += OA_DB::getDatatypeMapOptions();
163
164 // Is this a MySQL database connection?
165 if (strcasecmp($databaseType, 'mysql') === 0) {
166 // Should this connection happen over SSL?

167 if ($aDriverOptions['ssl']) {

168 $aOptions['ssl'] = true;
169 }
170 }
171
172 // Create the new database connection



MESSAGE: Undefined index: ssl
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 184
DEBUG INFO:

179
180 // Is this a MySQL database connection?
181 if (strcasecmp($databaseType, 'mysql') === 0) {
182 $client_flags = 0;
183 // Should this connection happen over SSL?

184 if ($aDriverOptions['ssl']) {

185 $client_flags = $client_flags | MYSQL_CLIENT_SSL;
186 }
187 // Should this connection use compression?
188 if ($aDriverOptions['compress']) {
189 $client_flags = $client_flags | MYSQL_CLIENT_COMPRESS;



MESSAGE: Undefined index: compress
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 188
DEBUG INFO:

183 // Should this connection happen over SSL?
184 if ($aDriverOptions['ssl']) {
185 $client_flags = $client_flags | MYSQL_CLIENT_SSL;
186 }
187 // Should this connection use compression?

188 if ($aDriverOptions['compress']) {

189 $client_flags = $client_flags | MYSQL_CLIENT_COMPRESS;
190 }
191 // Are there any MySQL connection flags to set?
192 if ($client_flags != 0) {
193 $oDbh->dsn['client_flags'] = $client_flags;



MESSAGE: Undefined index: ssl
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 360
DEBUG INFO:

355 if (is_null($aConf)) {
356 $aConf = $GLOBALS['_MAX']['CONF'];
357 }
358 $dbType = $aConf['database']['type'];
359 if (strcasecmp($dbType, 'mysql') === 0) {

360 if ($aConf['database']['ssl'] && !empty($aConf['database']['ca']) && !empty($aConf['database']['capth'])) {

361 $aDriverOptions['ssl'] = true;
362 $aDriverOptions['ca'] = $aConf['database']['ca'];
363 $aDriverOptions['capath'] = $aConf['database']['capth'];
364 }
365 if ($aConf['database']['compress']) {



MESSAGE: Undefined index: compress
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 365
DEBUG INFO:

360 if ($aConf['database']['ssl'] && !empty($aConf['database']['ca']) && !empty($aConf['database']['capth'])) {
361 $aDriverOptions['ssl'] = true;
362 $aDriverOptions['ca'] = $aConf['database']['ca'];
363 $aDriverOptions['capath'] = $aConf['database']['capth'];
364 }

365 if ($aConf['database']['compress']) {

366 $aDriverOptions['compress'] = true;
367 }
368 }
369 return $aDriverOptions;
370 }



MESSAGE: Undefined index: ssl
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/DB.php
LINE: 105
DEBUG INFO:

100 // configuration file
101 $aDSN = MDB2::parseDSN($dsn);
102 $databaseType = $aDSN['phptype'];
103
104 // Is this a MySQL database connection that should happen via SSL?

105 if ((strcasecmp($databaseType, 'mysql') === 0) && ($aDriverOptions['ssl'])) {

106 // Modify the DSN string to include the required CA and CAPATH options
107 if (!empty($aDriverOptions['ca']) && !empty($aDriverOptions['capath'])) {
108 $dsn .= "?ca={$aDriverOptions['ca']}&capth={$aDriverOptions['capath']}";
109 }
110 }



MESSAGE: Undefined index: pluginPaths
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/Auth.php
LINE: 259
DEBUG INFO:

254 // Is it possible to detect that we are NOT in the admin directory
255 // via the URL the user is accessing OpenXwith?
256 if (!preg_match('#/'. $location .'/?$#', $_SERVER['REQUEST_URI'])) {
257 $dirName = dirname($_SERVER['REQUEST_URI']);
258 // This check now allows for files in plugin folders

259 $pluginDirName = basename($aConf['pluginPaths'][$location]);

260 if (!preg_match("#/{$location}(/{$pluginDirName}/.*?)?/?$#", $dirName)) {
261 // The user is not in the "admin" folder directly. Are they
262 // in the admin folder as a result of a "full" virtual host
263 // configuration?
264 if ($aConf['webpath']['admin'] != OX_getHostName()) {



MESSAGE: Cannot modify header information - headers already sent by (output started at /home/vzcenter/public_html/adminsite/openx/lib/max/ErrorHandler.php:155)
TYPE: Warning
FILE: /home/vzcenter/public_html/adminsite/openx/lib/max/Delivery/common.php
LINE: 485
DEBUG INFO:

480 function MAX_header($value)
481 {
482 ###START_STRIP_DELIVERY
483 if(empty($GLOBALS['is_simulation']) && !defined('TEST_ENVIRONMENT_RUNNING')) {
484 ###END_STRIP_DELIVERY

485 header($value);

486 ###START_STRIP_DELIVERY
487 } else {
488 if (empty($GLOBALS['_HEADERS']) || !is_array($GLOBALS['_HEADERS'])) {
489 $GLOBALS['_HEADERS'] = array();
490 }



MESSAGE: Undefined index: var
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/max/Delivery/cookie.php
LINE: 352
DEBUG INFO:

347 // Set cookies
348 reset($GLOBALS['_MAX']['COOKIE']['CACHE']);
349 while (list($name,$v) = each ($GLOBALS['_MAX']['COOKIE']['CACHE'])) {
350 list($value, $expire) = $v;
351 // Treat the viewerId cookie differently, (always set in client)

352 if ($name == $conf['var']['viewerId']) {

353 MAX_cookieClientCookieSet($name, $value, $expire, '/', (!empty($conf['cookie']['domain']) ? $conf['cookie']['domain'] : null));
354 } else {
355 MAX_cookieSet($name, $value, $expire, '/', (!empty($conf['cookie']['domain']) ? $conf['cookie']['domain'] : null));
356 }
357 }



MESSAGE: Undefined variable: authType
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/Auth.php
LINE: 53
DEBUG INFO:

48 function &staticGetAuthPlugin()
49 {
50 static $authPlugin;
51 static $authPluginType;
52

53 if (!isset($authPlugin) || $authPluginType != $authType) {

54 $aConf = $GLOBALS['_MAX']['CONF'];
55 if (!empty($aConf['authentication']['type'])) {
56 $authType = $aConf['authentication']['type'];
57 $authPlugin = &OX_Component::factoryByComponentIdentifier($authType);
58 }



MESSAGE: Undefined variable: authType
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/Auth.php
LINE: 67
DEBUG INFO:

62 $authPlugin = new Plugins_Authentication();
63 }
64 if (!$authPlugin) {
65 OA::debug('Error while including authentication plugin and unable to fallback', PEAR_LOG_ERR);
66 }

67 $authPluginType = $authType;

68 }
69 return $authPlugin;
70 }
71
72 /**



MESSAGE: Undefined index: PREF
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OX/Extension/authentication/authentication.php
LINE: 154
DEBUG INFO:

149 {
150 global $strUsername, $strPassword, $strLogin, $strWelcomeTo, $strEnterUsername,
151 $strNoAdminInteface, $strForgotPassword;
152
153 $aConf = $GLOBALS['_MAX']['CONF'];

154 $aPref = $GLOBALS['_MAX']['PREF'];

155
156 header('Cache-Control: max-age=0, no-cache, proxy-revalidate, must-revalidate');
157
158 if (!$inLineLogin) {
159 phpAds_PageHeader(phpAds_Login);



MESSAGE: Cannot modify header information - headers already sent by (output started at /home/vzcenter/public_html/adminsite/openx/lib/max/ErrorHandler.php:155)
TYPE: Warning
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OX/Extension/authentication/authentication.php
LINE: 156
DEBUG INFO:

151 $strNoAdminInteface, $strForgotPassword;
152
153 $aConf = $GLOBALS['_MAX']['CONF'];
154 $aPref = $GLOBALS['_MAX']['PREF'];
155

156 header('Cache-Control: max-age=0, no-cache, proxy-revalidate, must-revalidate');

157
158 if (!$inLineLogin) {
159 phpAds_PageHeader(phpAds_Login);
160 }
161



MESSAGE: Undefined index: adminAssetsVersion
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OX.php
LINE: 52
DEBUG INFO:

47 */
48 function assetPath($asset = null)
49 {
50 global $installing;
51 $aConf = $GLOBALS['_MAX']['CONF'];

52 $assetsVersion = $aConf['webpath']['adminAssetsVersion'];

53 $prefix = $installing ? '' : MAX::constructURL(MAX_URL_ADMIN, '');
54 $pathWithSuffix = $prefix . "assets";
55 if (strlen($assetsVersion))
56 {
57 $pathWithSuffix .= "/" . $assetsVersion;



MESSAGE: Undefined variable: oCurrentSection
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/Admin/UI.php
LINE: 246
DEBUG INFO:

241 $this->oTpl->assign('showMainNavigation', $showMainNavigation);
242
243 //top
244 $this->_assignBranding($conf['ui']);
245 $this->_assignSearch($ID);

246 $this->_assignUserAccountInfo($oCurrentSection);

247
248 $this->oTpl->assign('headerModel', $oHeaderModel);
249 $this->oTpl->assign('hideNavigator', $conf['ui']['hideNavigator']);
250 // Tabbed navigation bar and sidebar
251 $this->oTpl->assign('aMainTabNav', $aMainNav);



MESSAGE: Undefined index: PREF
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/Admin/UI.php
LINE: 517
DEBUG INFO:

512 $this->oTpl->assign('strFieldFixBeforeContinue2', html_entity_decode($GLOBALS['strFieldFixBeforeContinue2']));
513 $this->oTpl->assign('strWarningMissing', html_entity_decode($GLOBALS['strWarningMissing']));
514 $this->oTpl->assign('strWarningMissingOpening', html_entity_decode($GLOBALS['strWarningMissingOpening']));
515 $this->oTpl->assign('strWarningMissingClosing', html_entity_decode($GLOBALS['strWarningMissingClosing']));
516 $this->oTpl->assign('strSubmitAnyway', html_entity_decode($GLOBALS['strSubmitAnyway']));

517 $this->oTpl->assign('warningBeforeDelete', $GLOBALS['_MAX']['PREF']['ui_novice_user'] ? 'true' : 'false');

518 }
519
520
521 function _assignJavascriptandCSS()
522 {



MESSAGE: Undefined index: notificationQueue
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/Admin/UI/NotificationManager.php
LINE: 45
DEBUG INFO:

40 */
41 function getNotifications()
42 {
43 global $session;
44

45 return $session['notificationQueue'];

46 }
47
48
49 /**
50 * Schedules a notification to be shown on next showHeader call.



MESSAGE: Cannot modify header information - headers already sent by (output started at /home/vzcenter/public_html/adminsite/openx/lib/max/ErrorHandler.php:155)
TYPE: Warning
FILE: /home/vzcenter/public_html/adminsite/openx/lib/OA/Admin/UI.php
LINE: 289
DEBUG INFO:

284 ob_start("ob_gzhandler");
285 }
286 }
287 }
288 // Send header with charset info and display

289 header ("Content-Type: text/html".(isset($phpAds_CharSet) && $phpAds_CharSet != "" ? "; charset=".$phpAds_CharSet : ""));

290 $this->oTpl->display();
291 }
292
293 function getID($ID)
294 {


OpenX

MESSAGE: Undefined index: customBranding
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
LINE: 27
DEBUG INFO:

22 $this->_smarty_include(array('smarty_include_tpl_file' => "layout/scripts.html", 'smarty_include_vars' => array()));
23 $this->_tpl_vars = $_smarty_tpl_vars;
24 unset($_smarty_tpl_vars);
25 ?>
26

27

28 29
30
73 '; ?>
74
75
76
77

78
79 _tpl_vars['jsFlash']; ?>
80
81
82 _tpl_vars['aSide']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):



MESSAGE: Undefined index: aSide
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
LINE: 82
DEBUG INFO:

77 _tpl_vars['jsMPE']; ?>
78
79 _tpl_vars['jsFlash']; ?>
80
81

82

83 foreach ($_from as $this->_tpl_vars['s']):
84 ?>
85 _tpl_vars['s']['top']): ?>
86 MESSAGE: Undefined index: aSideShortcuts
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
LINE: 96
DEBUG INFO:

91
94
95

96

97 foreach ($_from as $this->_tpl_vars['s']):
98 ?>
99


OpenX

204
205
206
207

208

MESSAGE: Undefined index: jsMPE
TYPE: Notice
FILE: /home/vzcenter/public_html/adminsite/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
LINE: 260
DEBUG INFO:

255 unset($_smarty_tpl_vars);
256 ?>
257
258
259

260

261
 

262
267
268
269

270
271
272
273 _tpl_vars['maintenanceAlert']): ?>
274
271
272
273

274