MESSAGE: Undefined index: logging
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/Delivery/remotehost.php
LINE: 73
DEBUG INFO:

68 */
69 function MAX_remotehostProxyLookup()
70 {
71 $conf = $GLOBALS['_MAX']['CONF'];
72 // Should proxy lookup conversion be performed?

73 if ($conf['logging']['proxyLookup']) {

74 // Determine if the viewer has come via an HTTP proxy
75 $proxy = false;
76 if (!empty($_SERVER['HTTP_VIA']) || !empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
77 $proxy = true;
78 } elseif (!empty($_SERVER['REMOTE_HOST'])) {



MESSAGE: Undefined index: logging
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/Delivery/remotehost.php
LINE: 141
DEBUG INFO:

136 function MAX_remotehostReverseLookup()
137 {
138 // Is the remote host name already set?
139 if (empty($_SERVER['REMOTE_HOST'])) {
140 // Should reverse lookups be performed?

141 if ($GLOBALS['_MAX']['CONF']['logging']['reverseLookup']) {

142 $_SERVER['REMOTE_HOST'] = @gethostbyaddr($_SERVER['REMOTE_ADDR']);
143 } else {
144 $_SERVER['REMOTE_HOST'] = $_SERVER['REMOTE_ADDR'];
145 }
146 }



MESSAGE: Undefined index: logging
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/Delivery/remotehost.php
LINE: 157
DEBUG INFO:

152 * phpSniff to extract useragent information is set in the
153 * configuration file.
154 */
155 function MAX_remotehostSetClientInfo()
156 {

157 if ($GLOBALS['_MAX']['CONF']['logging']['sniff'] && isset($_SERVER['HTTP_USER_AGENT'])) {

158 if (!class_exists('phpSniff')) {
159 include MAX_PATH . '/lib/phpSniff/phpSniff.class.php';
160 }
161 $client = new phpSniff($_SERVER['HTTP_USER_AGENT']);
162 $GLOBALS['_MAX']['CLIENT'] = $client->_browser_info;



MESSAGE: Undefined index: database
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/DB.php
LINE: 253
DEBUG INFO:

248 // if (extension_loaded('mysqli') && (!extension_loaded('mysql')))
249 // {
250 // $aConf['database']['type'] = 'mysqli';
251 // }
252 // }

253 $dbType = $aConf['database']['type'];

254 // only pan or mmmv0.1 will have a protocol set to unix
255 // otherwise no protocol is set and therefore defaults to tcp
256 if (isset($aConf['database']['protocol']) && $aConf['database']['protocol']=='unix')
257 {
258 $host = (!empty($aConf['database']['socket']))



MESSAGE: Undefined index: database
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/DB.php
LINE: 272
DEBUG INFO:

267 else
268 {
269 $protocol = '';
270 $port = !empty($aConf['database']['port']) ? ':' . $aConf['database']['port'] : '';
271 $dsn = $dbType . '://' .

272 $aConf['database']['username'] . ':' .

273 $aConf['database']['password'] . '@' .
274 $protocol .
275 $aConf['database']['host'] .
276 $port . '/' .
277 $aConf['database']['name'];



MESSAGE: Undefined index: database
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/DB.php
LINE: 273
DEBUG INFO:

268 {
269 $protocol = '';
270 $port = !empty($aConf['database']['port']) ? ':' . $aConf['database']['port'] : '';
271 $dsn = $dbType . '://' .
272 $aConf['database']['username'] . ':' .

273 $aConf['database']['password'] . '@' .

274 $protocol .
275 $aConf['database']['host'] .
276 $port . '/' .
277 $aConf['database']['name'];
278 }



MESSAGE: Undefined index: database
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/DB.php
LINE: 275
DEBUG INFO:

270 $port = !empty($aConf['database']['port']) ? ':' . $aConf['database']['port'] : '';
271 $dsn = $dbType . '://' .
272 $aConf['database']['username'] . ':' .
273 $aConf['database']['password'] . '@' .
274 $protocol .

275 $aConf['database']['host'] .

276 $port . '/' .
277 $aConf['database']['name'];
278 }
279 return $dsn;
280 }



MESSAGE: Undefined index: database
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/DB.php
LINE: 277
DEBUG INFO:

272 $aConf['database']['username'] . ':' .
273 $aConf['database']['password'] . '@' .
274 $protocol .
275 $aConf['database']['host'] .
276 $port . '/' .

277 $aConf['database']['name'];

278 }
279 return $dsn;
280 }
281
282 /**



MESSAGE: Only variable references should be returned by reference
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/DB.php
LINE: 78
DEBUG INFO:

73 // A hack to allow for installation on pgsql
74 // If the configuration hasn't been defined prevent
75 // loading mysql MDB2 driver.
76 if (strpos($dsn, '//:@') !== false) {
77 // Return a silent error

78 return new PEAR_Error('Bad argument: Empty DSN');

79 }
80
81 // Create an MD5 checksum of the DSN
82 $dsnMd5 = md5($dsn);
83 // Does this database connection already exist?



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings.lang.php
LINE: 61
DEBUG INFO:

56 $GLOBALS['strTablePrefixInvalid'] = "Table prefix contains invalid characters";
57 $GLOBALS['strTableInUse'] = "The database which you specified is already used for ".MAX_PRODUCT_NAME.", please use a different table prefix, or read the UPGRADE.txt file for upgrading instructions.";
58 $GLOBALS['strNoVersionInfo'] = "Unable to select the database version";
59 $GLOBALS['strInvalidVersionInfo'] = "Unable to determine the database version";
60 $GLOBALS['strInvalidMySqlVersion'] = MAX_PRODUCT_NAME." requires MySQL 4.0 or higher to function correctly. Please select a different database server.";

61 $GLOBALS['strTableWrongType'] = "The table type you selected isn't supported by your installation of ".phpAds_dbmsname;

62 $GLOBALS['strMayNotFunction'] = "Before you continue, please correct these potential problems:";
63 $GLOBALS['strFixProblemsBefore'] = "The following item(s) need to be corrected before you can install ".MAX_PRODUCT_NAME.". If you have any questions about this error message, please read the Administrator Guide, which is part of the package you downloaded.";
64 $GLOBALS['strFixProblemsAfter'] = "If you are not able to correct the problems listed above, please contact the administrator of the server you are trying to install ".MAX_PRODUCT_NAME." on. The administrator of the server may be able to help you.";
65 $GLOBALS['strIgnoreWarnings'] = "Ignore warnings";
66 $GLOBALS['strFixErrorsBeforeContinuing'] = "Please fix all errors before continuing.";



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings.lang.php
LINE: 67
DEBUG INFO:

62 $GLOBALS['strMayNotFunction'] = "Before you continue, please correct these potential problems:";
63 $GLOBALS['strFixProblemsBefore'] = "The following item(s) need to be corrected before you can install ".MAX_PRODUCT_NAME.". If you have any questions about this error message, please read the Administrator Guide, which is part of the package you downloaded.";
64 $GLOBALS['strFixProblemsAfter'] = "If you are not able to correct the problems listed above, please contact the administrator of the server you are trying to install ".MAX_PRODUCT_NAME." on. The administrator of the server may be able to help you.";
65 $GLOBALS['strIgnoreWarnings'] = "Ignore warnings";
66 $GLOBALS['strFixErrorsBeforeContinuing'] = "Please fix all errors before continuing.";

67 $GLOBALS['strWarningDBavailable'] = "The version of PHP you are using doesn't have support for connecting to a ".phpAds_dbmsname." database server. You need to enable the PHP ".phpAds_dbmsname." extension before you can proceed.";

68 $GLOBALS['strWarningPHPversion'] = MAX_PRODUCT_NAME." requires PHP 4.3.6 or higher to function correctly. You are currently using {php_version}.";
69 $GLOBALS['strWarningRegisterGlobals'] = "The PHP configuration variable register_globals needs to be turned on.";
70 $GLOBALS['strWarningRegisterArgcArv'] = "The PHP configuration variable register_argc_argv needs to be turned on to run maintenance from the command line.";
71 $GLOBALS['strWarningMagicQuotesGPC'] = "The PHP configuration variable magic_quotes_gpc needs to be turned on.";
72 $GLOBALS['strWarningMagicQuotesRuntime'] = "The PHP configuration variable magic_quotes_runtime needs to be turned off.";



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings.lang.php
LINE: 67
DEBUG INFO:

62 $GLOBALS['strMayNotFunction'] = "Before you continue, please correct these potential problems:";
63 $GLOBALS['strFixProblemsBefore'] = "The following item(s) need to be corrected before you can install ".MAX_PRODUCT_NAME.". If you have any questions about this error message, please read the Administrator Guide, which is part of the package you downloaded.";
64 $GLOBALS['strFixProblemsAfter'] = "If you are not able to correct the problems listed above, please contact the administrator of the server you are trying to install ".MAX_PRODUCT_NAME." on. The administrator of the server may be able to help you.";
65 $GLOBALS['strIgnoreWarnings'] = "Ignore warnings";
66 $GLOBALS['strFixErrorsBeforeContinuing'] = "Please fix all errors before continuing.";

67 $GLOBALS['strWarningDBavailable'] = "The version of PHP you are using doesn't have support for connecting to a ".phpAds_dbmsname." database server. You need to enable the PHP ".phpAds_dbmsname." extension before you can proceed.";

68 $GLOBALS['strWarningPHPversion'] = MAX_PRODUCT_NAME." requires PHP 4.3.6 or higher to function correctly. You are currently using {php_version}.";
69 $GLOBALS['strWarningRegisterGlobals'] = "The PHP configuration variable register_globals needs to be turned on.";
70 $GLOBALS['strWarningRegisterArgcArv'] = "The PHP configuration variable register_argc_argv needs to be turned on to run maintenance from the command line.";
71 $GLOBALS['strWarningMagicQuotesGPC'] = "The PHP configuration variable magic_quotes_gpc needs to be turned on.";
72 $GLOBALS['strWarningMagicQuotesRuntime'] = "The PHP configuration variable magic_quotes_runtime needs to be turned off.";



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings-help.lang.php
LINE: 30
DEBUG INFO:

25 $Id: settings-help.lang.php 22929 2008-07-21 14:01:02Z david.keen@openx.org $
26 */
27
28 // Settings help translation strings
29 $GLOBALS['phpAds_hlp_dbhost'] = "

30 Specify the hostname of the ".phpAds_dbmsname." database server to which you are trying to connect.

31 ";
32
33 $GLOBALS['phpAds_hlp_dbport'] = "
34 Specify the number of the port of the ".phpAds_dbmsname." database server to which you are trying to
35 connect. The default port number for a ".phpAds_dbmsname." database is ".



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings-help.lang.php
LINE: 34
DEBUG INFO:

29 $GLOBALS['phpAds_hlp_dbhost'] = "
30 Specify the hostname of the ".phpAds_dbmsname." database server to which you are trying to connect.
31 ";
32
33 $GLOBALS['phpAds_hlp_dbport'] = "

34 Specify the number of the port of the ".phpAds_dbmsname." database server to which you are trying to

35 connect. The default port number for a ".phpAds_dbmsname." database is ".
36 (phpAds_dbmsname == 'MySQL' ? '3306' : '5432')."
.
37 ";
38
39 $GLOBALS['phpAds_hlp_dbuser'] = "



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings-help.lang.php
LINE: 35
DEBUG INFO:

30 Specify the hostname of the ".phpAds_dbmsname." database server to which you are trying to connect.
31 ";
32
33 $GLOBALS['phpAds_hlp_dbport'] = "
34 Specify the number of the port of the ".phpAds_dbmsname." database server to which you are trying to

35 connect. The default port number for a ".phpAds_dbmsname." database is ".

36 (phpAds_dbmsname == 'MySQL' ? '3306' : '5432')."
.
37 ";
38
39 $GLOBALS['phpAds_hlp_dbuser'] = "
40 Specify the username which ".MAX_PRODUCT_NAME." must use to gain access to the ".phpAds_dbmsname." database server.



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings-help.lang.php
LINE: 36
DEBUG INFO:

31 ";
32
33 $GLOBALS['phpAds_hlp_dbport'] = "
34 Specify the number of the port of the ".phpAds_dbmsname." database server to which you are trying to
35 connect. The default port number for a ".phpAds_dbmsname." database is ".

36 (phpAds_dbmsname == 'MySQL' ? '3306' : '5432').".

37 ";
38
39 $GLOBALS['phpAds_hlp_dbuser'] = "
40 Specify the username which ".MAX_PRODUCT_NAME." must use to gain access to the ".phpAds_dbmsname." database server.
41 ";



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings-help.lang.php
LINE: 40
DEBUG INFO:

35 connect. The default port number for a ".phpAds_dbmsname." database is ".
36 (phpAds_dbmsname == 'MySQL' ? '3306' : '5432')."
.
37 ";
38
39 $GLOBALS['phpAds_hlp_dbuser'] = "

40 Specify the username which ".MAX_PRODUCT_NAME." must use to gain access to the ".phpAds_dbmsname." database server.

41 ";
42
43 $GLOBALS['phpAds_hlp_dbpassword'] = "
44 Specify the password which ".MAX_PRODUCT_NAME." must use to gain access to the ".phpAds_dbmsname." database server.
45 ";



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings-help.lang.php
LINE: 44
DEBUG INFO:

39 $GLOBALS['phpAds_hlp_dbuser'] = "
40 Specify the username which ".MAX_PRODUCT_NAME." must use to gain access to the ".phpAds_dbmsname." database server.
41 ";
42
43 $GLOBALS['phpAds_hlp_dbpassword'] = "

44 Specify the password which ".MAX_PRODUCT_NAME." must use to gain access to the ".phpAds_dbmsname." database server.

45 ";
46
47 $GLOBALS['phpAds_hlp_dbname'] = "
48 Specify the name of the database on the database server where ".MAX_PRODUCT_NAME." must store its data.
49 Important the database must already be created on the database server. ".MAX_PRODUCT_NAME." will not create



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings-help.lang.php
LINE: 77
DEBUG INFO:

72 to add a prefix to names of the tables. If you are using multiple installations of ".MAX_PRODUCT_NAME."
73 in the same database, you need to make sure this prefix is unique for all installations.
74 ";
75
76 $GLOBALS['phpAds_hlp_table_type'] = "

77 ".phpAds_dbmsname." supports multiple table types. Each type of table has unique properties and some

78 can speed up ".MAX_PRODUCT_NAME." considerable. MyISAM is the default table type and is available
79 in all installations of ".phpAds_dbmsname.". Other table types may not be available on your server.
80 ";
81
82 $GLOBALS['phpAds_hlp_url_prefix'] = "



MESSAGE: Use of undefined constant phpAds_dbmsname - assumed 'phpAds_dbmsname'
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/max/language/en/settings-help.lang.php
LINE: 79
DEBUG INFO:

74 ";
75
76 $GLOBALS['phpAds_hlp_table_type'] = "
77 ".phpAds_dbmsname." supports multiple table types. Each type of table has unique properties and some
78 can speed up ".MAX_PRODUCT_NAME." considerable. MyISAM is the default table type and is available

79 in all installations of ".phpAds_dbmsname.". Other table types may not be available on your server.

80 ";
81
82 $GLOBALS['phpAds_hlp_url_prefix'] = "
83 ".MAX_PRODUCT_NAME." needs to know where it is located on the web server in order
84 to work correctly. You must specify the URL to the directory where ".MAX_PRODUCT_NAME."



MESSAGE: Undefined index: webpath
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/Max.php
LINE: 180
DEBUG INFO:

175 * the path does not contain a trailing slash.
176 */
177 function assetPath($asset = null)
178 {
179 $conf = $GLOBALS['_MAX']['CONF'];

180 $assetsVersion = $conf['webpath']['adminAssetsVersion'];

181
182 $pathWithSuffix = "assets";
183 if (strlen($assetsVersion))
184 {
185 $pathWithSuffix .= "/" . $assetsVersion;



MESSAGE: Undefined index: webpath
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/Max.php
LINE: 180
DEBUG INFO:

175 * the path does not contain a trailing slash.
176 */
177 function assetPath($asset = null)
178 {
179 $conf = $GLOBALS['_MAX']['CONF'];

180 $assetsVersion = $conf['webpath']['adminAssetsVersion'];

181
182 $pathWithSuffix = "assets";
183 if (strlen($assetsVersion))
184 {
185 $pathWithSuffix .= "/" . $assetsVersion;



MESSAGE: Undefined index: dirPage
TYPE: Notice
FILE: /var/www/html/old/html/openx/www/admin/install.php
LINE: 176
DEBUG INFO:

171 else
172 {
173 $action = OA_UPGRADE_RECOVERY_INFORM;
174 }
175 }

176 else if (array_key_exists('btn_syscheck', $_POST) || $_POST['dirPage'] == OA_UPGRADE_SYSCHECK)

177 {
178 // store checkForUpdates value into session, so that they can be inserted into DB once DB has been created
179 session_start();
180
181 // Always check for updates



MESSAGE: Undefined offset: 40
TYPE: Notice
FILE: /var/www/html/old/html/openx/www/admin/install.php
LINE: 501
DEBUG INFO:

496 '30' => array($navLinks[OA_UPGRADE_SYSCHECK] => 'System Check'),
497 '40' => array($navLinks[OA_UPGRADE_APPCHECK] => 'Application Check'),
498 '45' => array($navLinks[OA_UPGRADE_LOGIN] => 'Login'),
499 '50' => array($navLinks[OA_UPGRADE_DBSETUP] => 'Database'),
500 '60' => array($navLinks[OA_UPGRADE_CONFIGSETUP] => 'Configuration'),

501 '70' => array($navLinks[OA_UPGRADE_ADMINSETUP] => 'Admin'),

502 '100' => array('' => 'Finished')
503 );
504
505 // display header, with proper 'active page' marked using $activeNav[$action]
506 phpAds_PageHeader($activeNav[$action],'', $imgPath, false, false);



MESSAGE: Undefined index: webpath
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/Max.php
LINE: 180
DEBUG INFO:

175 * the path does not contain a trailing slash.
176 */
177 function assetPath($asset = null)
178 {
179 $conf = $GLOBALS['_MAX']['CONF'];

180 $assetsVersion = $conf['webpath']['adminAssetsVersion'];

181
182 $pathWithSuffix = "assets";
183 if (strlen($assetsVersion))
184 {
185 $pathWithSuffix .= "/" . $assetsVersion;



MESSAGE: Undefined index: PREF
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/Admin/UI.php
LINE: 75
DEBUG INFO:

70 global $phpAds_CharSet;
71 global $OA_Navigation, $OA_Navigation_ID;
72 global $xajax, $session;
73
74 $conf = $GLOBALS['_MAX']['CONF'];

75 $pref = $GLOBALS['_MAX']['PREF'];

76
77 $phpAds_GUIDone = true;
78 $OA_Navigation_ID = $ID;
79
80 $aNav = array();



MESSAGE: Cannot modify header information - headers already sent by (output started at /var/www/html/old/html/openx/lib/max/ErrorHandler.php:153)
TYPE: Warning
FILE: /var/www/html/old/html/openx/lib/OA/Admin/UI.php
LINE: 212
DEBUG INFO:

207 }
208 }
209 }
210
211 // Send header with charset info

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

213
214 // Generate layout
215 $this->oTpl->assign('pageTitle', $pageTitle);
216 $this->oTpl->assign('imgPath', $imgPath);
217 $this->oTpl->assign('metaGenerator', MAX_PRODUCT_NAME.' v'.OA_VERSION.' - http://'.MAX_PRODUCT_URL);



MESSAGE: Undefined index: ui
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/Admin/UI.php
LINE: 243
DEBUG INFO:

238 // Javascript and stylesheets to include
239 $this->oTpl->assign('genericStylesheets', urlencode(implode(',', $this->genericStylesheets())));
240 $this->oTpl->assign('genericJavascript', urlencode(implode(',', $this->genericJavascript())));
241 $this->oTpl->assign('aGenericStyleshets', $this->genericStylesheets());
242 $this->oTpl->assign('aGenericJavascript', $this->genericJavascript());

243 $this->oTpl->assign('combineAssets', $conf['ui']['combineAssets']);

244
245 if (!empty($session['RUN_MPE']) && $session['RUN_MPE']) {
246 require_once MAX_PATH . '/www/admin/lib-maintenance-priority.inc.php';
247 $this->oTpl->assign('jsMPE', $xajax->getJavascript(MAX::assetPath(), 'js/xajax.js'));
248 }



MESSAGE: Undefined index: ui
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/Admin/UI.php
LINE: 256
DEBUG INFO:

251 // Include the flashObject resource file
252 $this->oTpl->assign('jsFlash', MAX_flashGetFlashObjectExternal());
253 }
254
255 // Branding

256 $this->oTpl->assign('applicationName', $conf['ui']['applicationName']);

257 $this->oTpl->assign('logoFilePath', $conf['ui']['logoFilePath']);
258 $this->oTpl->assign('productName', MAX_PRODUCT_NAME);
259
260 $displaySearch = ($ID != phpAds_Login && $ID != phpAds_Error && OA_Auth::isLoggedIn() && OA_Permission::isAccount(OA_ACCOUNT_MANAGER) && !defined('phpAds_installing'));
261 $this->oTpl->assign('displaySearch', $displaySearch);



MESSAGE: Undefined index: ui
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/OA/Admin/UI.php
LINE: 257
DEBUG INFO:

252 $this->oTpl->assign('jsFlash', MAX_flashGetFlashObjectExternal());
253 }
254
255 // Branding
256 $this->oTpl->assign('applicationName', $conf['ui']['applicationName']);

257 $this->oTpl->assign('logoFilePath', $conf['ui']['logoFilePath']);

258 $this->oTpl->assign('productName', MAX_PRODUCT_NAME);
259
260 $displaySearch = ($ID != phpAds_Login && $ID != phpAds_Error && OA_Auth::isLoggedIn() && OA_Permission::isAccount(OA_ACCOUNT_MANAGER) && !defined('phpAds_installing'));
261 $this->oTpl->assign('displaySearch', $displaySearch);
262 $this->oTpl->assign('searchUrl', MAX::constructURL(MAX_URL_ADMIN, 'admin-search.php'));



MESSAGE: Undefined index: webpath
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/Max.php
LINE: 148
DEBUG INFO:

143 function constructURL($type, $file = null)
144 {
145 $conf = $GLOBALS['_MAX']['CONF'];
146 // Prepare the base URL
147 if ($type == MAX_URL_ADMIN) {

148 $path = $conf['webpath']['admin'];

149 } elseif ($type == MAX_URL_IMAGE) {
150 $path = $conf['webpath']['admin'] . "/" . MAX::assetPath("/images");
151 } else {
152 return null;
153 }



MESSAGE: Undefined index: openads
TYPE: Notice
FILE: /var/www/html/old/html/openx/lib/Max.php
LINE: 160
DEBUG INFO:

155 // be at least one slash in the path (after the hostname,
156 // in the event that virtual hosts are used, and delivery
157 // happens from the root of virtual hosts)
158 $path .= '/';
159 // Modify the admin URL for different SSL port if required

160 if ($conf['openads']['sslPort'] != 443) {

161 if ($GLOBALS['_MAX']['HTTP'] == 'https://') {
162 $path = preg_replace('#/#', ':' . $conf['openads']['sslPort'] . '/', $path);
163 }
164 }
165 // Return the URL


OpenX

MESSAGE: Undefined index: jsMPE
TYPE: Notice
FILE: /var/www/html/old/html/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
LINE: 28
DEBUG INFO:

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

28

29
30 _tpl_vars['jsFlash']; ?>
31
32
33 _tpl_vars['aSide']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):



MESSAGE: Undefined index: jsFlash
TYPE: Notice
FILE: /var/www/html/old/html/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
LINE: 30
DEBUG INFO:

25 unset($_smarty_tpl_vars);
26 ?>
27
28 _tpl_vars['jsMPE']; ?>
29

30

31
32
33 _tpl_vars['aSide']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }if (count($_from)):
34 foreach ($_from as $this->_tpl_vars['s']):
35 ?>


OpenX

    MESSAGE: Undefined index: infoUser
    TYPE: Notice
    FILE: /var/www/html/old/html/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
    LINE: 72
    DEBUG INFO:

    67 unset($_smarty_tpl_vars);
    68 ?>
    69


    70

      71
      72

      73
    • _tpl_vars['infoUser'])) ? $this->_run_mod_handler('escape', true, $_tmp) : smarty_modifier_escape($_tmp)); ?>
      74

    • 75
      76
      77 _tpl_vars['helpLink']): ?>


    • Help

    • MESSAGE: Undefined index: buttonReportBugs
      TYPE: Notice
      FILE: /var/www/html/old/html/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
      LINE: 83
      DEBUG INFO:

      78

    • 'Help'), $this);?>
      80

    • 81
      82
      83

      84
    • 'ReportBug'), $this);?>
      85

    • 86
      87
      88 _tpl_vars['buttonLogout']): ?>



      MESSAGE: Undefined index: buttonLogout
      TYPE: Notice
      FILE: /var/www/html/old/html/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
      LINE: 88
      DEBUG INFO:

      83 _tpl_vars['buttonReportBugs']): ?>
      84

    • 'ReportBug'), $this);?>
      85

    • 86
      87
      88

      89
    • 'Logout'), $this);?>
      90

    • 91
      92
      93 _tpl_vars['buttonStartOver']): ?>


    • Start over

    MESSAGE: Undefined index: buttonLogout
    TYPE: Notice
    FILE: /var/www/html/old/html/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
    LINE: 123
    DEBUG INFO:

    118 ?>
    119
    120
    121


      122
      123

      124

    • 125
      _tpl_vars['strWorkingAs']; ?>
      126 _tpl_vars['accountName']; ?>
      127

      128


     
 
  • Terms & Privacy
  • System Check
  • Login
  • Database
  • Configuration
  • Finished
 
Progress
 

 


Welcome to OpenX v2.6.0
Thank you for choosing OpenX.

This wizard will guide you through the process of installing / upgrading the OpenX ad server.

To help you with the installation process we have created an Installation Quick Start Guide to take you through the process of getting up and running. For a more detailed guide to installing and configuring OpenX visit the Administrator Guide.


 
   

MESSAGE: Undefined index: jsMPE
TYPE: Notice
FILE: /var/www/html/old/html/openx/var/templates_compiled/%%72^729^729250E1%%main.html.php
LINE: 219
DEBUG INFO:

214
215
216


217
218
219

220
 

221
226
227
228

229
230
231
232 _tpl_vars['maintenanceAlert']): ?>
233
230
231
232

233