X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Finstall-inc.php;h=0f4244cbf64d80d830f5327c294d6bd23d1e415d;hp=18af33b97dc2d136af0e86564ce398ec2efe379f;hb=fc9a6d12d5143014c74aa0e9ed0810b93f20b118;hpb=98e44adab9035e30efe78181b76d78c6e13ba574 diff --git a/inc/install-inc.php b/inc/install-inc.php index 18af33b97d..0f4244cbf6 100644 --- a/inc/install-inc.php +++ b/inc/install-inc.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -55,43 +55,43 @@ FILTER_INIT_TIMEZONE(array()); // Init variables $GLOBALS['install_mysql'] = array(); -if ((isPostRequestParameterSet('mysql')) && (is_array(postRequestParameter('mysql')))) { +if ((isPostRequestElementSet('mysql')) && (is_array(postRequestElement('mysql')))) { // Transfer 'mysql' array - $GLOBALS['install_mysql'] = postRequestParameter('mysql'); + $GLOBALS['install_mysql'] = postRequestElement('mysql'); } // END - if // Check if both passwords from SMTP are matching -if ((isGetRequestParameterSet('page') && (getRequestParameter('page') == 5))) { +if ((isGetRequestElementSet('page') && (getRequestElement('page') == 5))) { // Okay, we have to check it - if (isPostRequestParameterSet('smtp_user') && (!isPostRequestParameterSet('smtp_host'))) { + if (isPostRequestElementSet('smtp_user') && (!isPostRequestElementSet('smtp_host'))) { // Hostname not set addToInstallContent('
{--INSTALL_SMTP_HOSTNAME_EMPTY--}
'); - setGetRequestParameter('page', 3); + setGetRequestElement('page', 3); } // END - if - if ((!isPostRequestParameterSet('smtp_pass1')) && (isPostRequestParameterSet('smtp_pass2'))) { + if ((!isPostRequestElementSet('smtp_pass1')) && (isPostRequestElementSet('smtp_pass2'))) { // Password is empty - addToInstallContent('
{--INSTALL_SMTP_PASS1_EMPTY--}
'); - setGetRequestParameter('page', 3); + addToInstallContent('
{--INSTALL_SMTP_PASSWORD1_EMPTY--}
'); + setGetRequestElement('page', 3); } // END - if - if ((isPostRequestParameterSet('smtp_pass1')) && (!isPostRequestParameterSet('smtp_pass2'))) { + if ((isPostRequestElementSet('smtp_pass1')) && (!isPostRequestElementSet('smtp_pass2'))) { // Password repeat is empty - addToInstallContent('
{--INSTALL_SMTP_PASS2_EMPTY--}
'); - setGetRequestParameter('page', 3); + addToInstallContent('
{--INSTALL_SMTP_PASSWORD2_EMPTY--}
'); + setGetRequestElement('page', 3); } // END - if - if (postRequestParameter('smtp_pass1') != postRequestParameter('smtp_pass1')) { + if (postRequestElement('smtp_pass1') != postRequestElement('smtp_pass1')) { // Passwords are not matching addToInstallContent('
{--INSTALL_SMTP_PASS_MISMATCH--}
'); - setGetRequestParameter('page', 3); + setGetRequestElement('page', 3); } // END - if } // END - if // Is the mailer installed or no admin registered so far? if ((!isInstalled()) || (!isAdminRegistered())) { // Output page for entered value - switch (getRequestParameter('page')) { + switch (getRequestElement('page')) { case 'welcome': // Welcome to the installation! addTemplateToInstallContent('install_welcome'); break; @@ -120,11 +120,11 @@ if ((!isInstalled()) || (!isAdminRegistered())) { $content['mysql_prefix'] = $GLOBALS['install_mysql']['prefix']; $content['mysql_login'] = $GLOBALS['install_mysql']['login']; $content['table_type'] = $GLOBALS['install_mysql']['type']; - $content['spath'] = postRequestParameter('spath'); - $content['burl'] = postRequestParameter('burl'); - $content['title'] = postRequestParameter('title'); - $content['slogan'] = postRequestParameter('slogan'); - $content['email'] = postRequestParameter('email'); + $content['spath'] = postRequestElement('spath'); + $content['burl'] = postRequestElement('burl'); + $content['title'] = postRequestElement('title'); + $content['slogan'] = postRequestElement('slogan'); + $content['email'] = postRequestElement('email'); // Load template addTemplateToInstallContent('install_page2', $content); @@ -132,11 +132,11 @@ if ((!isInstalled()) || (!isAdminRegistered())) { case '3': // Set more values - $content['spath'] = postRequestParameter('spath'); - $content['burl'] = postRequestParameter('burl'); - $content['title'] = postRequestParameter('title'); - $content['slogan'] = postRequestParameter('slogan'); - $content['email'] = postRequestParameter('email'); + $content['spath'] = postRequestElement('spath'); + $content['burl'] = postRequestElement('burl'); + $content['title'] = postRequestElement('title'); + $content['slogan'] = postRequestElement('slogan'); + $content['email'] = postRequestElement('email'); // Use default SMTP data $smtpHost = '{?SMTP_HOSTNAME?}'; @@ -145,11 +145,11 @@ if ((!isInstalled()) || (!isAdminRegistered())) { $smtpPass2 = '{?SMTP_PASSWORD?}'; // Overwrite it with the data from sent (failed) form - if (isPostRequestParameterSet('smtp_host')) $smtpHost = postRequestParameter('smtp_host'); - if (isPostRequestParameterSet('smtp_user')) $smtpUser = postRequestParameter('smtp_user'); - if (isPostRequestParameterSet('smtp_pass')) { - $smtpPass1 = postRequestParameter('smtp_pass'); - $smtpPass2 = postRequestParameter('smtp_pass'); + if (isPostRequestElementSet('smtp_host')) $smtpHost = postRequestElement('smtp_host'); + if (isPostRequestElementSet('smtp_user')) $smtpUser = postRequestElement('smtp_user'); + if (isPostRequestElementSet('smtp_pass')) { + $smtpPass1 = postRequestElement('smtp_pass'); + $smtpPass2 = postRequestElement('smtp_pass'); } // END - if // Database login data @@ -173,16 +173,16 @@ if ((!isInstalled()) || (!isAdminRegistered())) { case '5': // Misc settings // General settings - $content['spath'] = postRequestParameter('spath'); - $content['burl'] = postRequestParameter('burl'); - $content['title'] = postRequestParameter('title'); - $content['slogan'] = postRequestParameter('slogan'); - $content['email'] = postRequestParameter('email'); + $content['spath'] = postRequestElement('spath'); + $content['burl'] = postRequestElement('burl'); + $content['title'] = postRequestElement('title'); + $content['slogan'] = postRequestElement('slogan'); + $content['email'] = postRequestElement('email'); // SMTP settings - $content['smtp_host'] = postRequestParameter('smtp_host'); - $content['smtp_user'] = postRequestParameter('smtp_user'); - $content['smtp_pass'] = postRequestParameter('smtp_pass1'); + $content['smtp_host'] = postRequestElement('smtp_host'); + $content['smtp_user'] = postRequestElement('smtp_user'); + $content['smtp_pass'] = postRequestElement('smtp_pass1'); // Database login data $OUT = ''; @@ -196,7 +196,7 @@ if ((!isInstalled()) || (!isAdminRegistered())) { break; case 'finalize': // Write captured data to files - if ((isPostRequestParameterSet('finalize')) && (!isInstalled())) { + if ((isPostRequestElementSet('finalize')) && (!isInstalled())) { // You have submitted data then we have to reset the SQLs initSqls(); @@ -215,7 +215,7 @@ if ((!isInstalled()) || (!isAdminRegistered())) { // Seems to work, also right database? if (SQL_SELECT_DB($GLOBALS['install_mysql']['dbase'], __FILE__, __LINE__) === true) { // Check for dumps - if ((!isFileReadable(postRequestParameter('spath') . 'install/tables.sql')) || (!isFileReadable(postRequestParameter('spath') . 'install/menu-'.getLanguage().'.sql'))) { + if ((!isFileReadable(postRequestElement('spath') . 'install/tables.sql')) || (!isFileReadable(postRequestElement('spath') . 'install/menu-'.getLanguage().'.sql'))) { // Installation area not found debug_report_bug(__FILE__, __LINE__, 'SQL dumps not found. Please extract ALL files from the archive or checkout all files out from SVN.'); return; @@ -224,13 +224,13 @@ if ((!isInstalled()) || (!isAdminRegistered())) { // Any errors detected? if (!ifFatalErrorsDetected()) { // Set type and prefix from POST data - setConfigEntry('_TABLE_TYPE' , postRequestParameter('mysql', 'type')); - setConfigEntry('_MYSQL_PREFIX', postRequestParameter('mysql', 'prefix')); + setConfigEntry('_TABLE_TYPE' , postRequestElement('mysql', 'type')); + setConfigEntry('_MYSQL_PREFIX', postRequestElement('mysql', 'prefix')); // Both exists so import them foreach (array('tables', 'menu-'.getLanguage()) as $dump) { // Should be save here because file_exists() is there but we check it again. :) - $FQFN = postRequestParameter('spath') . 'install/' . $dump . '.sql'; + $FQFN = postRequestElement('spath') . 'install/' . $dump . '.sql'; // Is the file readable? if (isFileReadable($FQFN)) { @@ -273,12 +273,12 @@ if ((!isInstalled()) || (!isAdminRegistered())) { $OUT .= ' '; } // END foreach $content['mysql_hidden'] = $OUT; - $content['spath'] = postRequestParameter('spath'); - $content['burl'] = postRequestParameter('burl'); - $content['title'] = postRequestParameter('title'); - $content['smtp_host'] = postRequestParameter('smtp_host'); - $content['smtp_user'] = postRequestParameter('smtp_user'); - $content['smtp_pass'] = postRequestParameter('smtp_pass1'); + $content['spath'] = postRequestElement('spath'); + $content['burl'] = postRequestElement('burl'); + $content['title'] = postRequestElement('title'); + $content['smtp_host'] = postRequestElement('smtp_host'); + $content['smtp_user'] = postRequestElement('smtp_user'); + $content['smtp_pass'] = postRequestElement('smtp_pass1'); // Load template addTemplateToInstallContent('install_fatal_errors', $content); @@ -306,7 +306,7 @@ if ((!isInstalled()) || (!isAdminRegistered())) { break; default: - logDebugMessage(__FILE__, __LINE__, sprintf("Wrong page %s detected", getRequestParameter('page'))); + logDebugMessage(__FILE__, __LINE__, sprintf("Wrong page %s detected", getRequestElement('page'))); addTemplateToInstallContent('admin_settings_unsaved', '{--WRONG_PAGE--}'); break; } // END - switch