X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Finstall-inc.php;h=fccd20eacab3777e1b2d295222d45d4f70255802;hp=fd5572b0331c83bc458a3fb2c796b0a9652b6034;hb=08a9a052ddd67568fa7bcc98c4300ce0cc6bfdc0;hpb=b8c86fa12322603c24a88ea2b0fd3dbeba612752 diff --git a/inc/install-inc.php b/inc/install-inc.php index fd5572b033..fccd20eaca 100644 --- a/inc/install-inc.php +++ b/inc/install-inc.php @@ -1,7 +1,7 @@ "); - REQUEST_SET_GET('page', 3); + addToInstallContent('
{--INSTALLER_SMTP_HOSTNAME_EMPTY--}
'); + setGetRequestElement('install_page', 3); } // END - if - if ((!REQUEST_ISSET_POST(('smtp_pass1'))) && (REQUEST_ISSET_POST(('smtp_pass2')))) { + if ((!isPostRequestElementSet('smtp_pass1')) && (isPostRequestElementSet('smtp_pass2'))) { // Password is empty - OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS1_EMPTY')."
"); - REQUEST_SET_GET('page', 3); + addToInstallContent('
{--INSTALLER_SMTP_PASSWORD1_EMPTY--}
'); + setGetRequestElement('install_page', 3); } // END - if - if ((REQUEST_ISSET_POST(('smtp_pass1'))) && (!REQUEST_ISSET_POST(('smtp_pass2')))) { + if ((isPostRequestElementSet('smtp_pass1')) && (!isPostRequestElementSet('smtp_pass2'))) { // Password repeat is empty - OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS2_EMPTY')."
"); - REQUEST_SET_GET('page', 3); + addToInstallContent('
{--INSTALLER_SMTP_PASSWORD2_EMPTY--}
'); + setGetRequestElement('install_page', 3); } // END - if - if (REQUEST_POST('smtp_pass1') != REQUEST_POST('smtp_pass1')) { + if (postRequestElement('smtp_pass1') != postRequestElement('smtp_pass1')) { // Passwords are not matching - OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS_MISMATCH')."
"); - REQUEST_SET_GET('page', 3); + addToInstallContent('
{--INSTALLER_SMTP_PASS_MISMATCH--}
'); + setGetRequestElement('install_page', 3); } // END - if } // END - if -// Is MXChange installed or no admin registered so far? -if ((!isInstalled()) || (!isAdminRegistered())) -{ - // Set URL for FORM actions - define('__BURL_ACTION', constant('URL')); - - // Output page for entered value - switch (REQUEST_GET('page')) - { - case "welcome": // Welcome to the installation! - LOAD_TEMPLATE("install_welcome"); - break; - - case "1": // Server path, base URL - // @Profi-Concept: Hab meine Meinung doch geaendert! :-) - // Load template - LOAD_TEMPLATE("install_page1"); - break; - - case "2": // MySQL data (alone!) - if (empty($mysql['dbase'])) $mysql['dbase'] = "your_database"; - if (empty($mysql['login'])) $mysql['login'] = "your_login"; - if (empty($mysql['host'])) $mysql['host'] = "localhost"; - if (empty($mysql['prefix'])) $mysql['prefix'] = "mxchange_"; - if (getTotalFatalErrors() > 0) { - OUTPUT_HTML(""); - foreach (getFatalArray() as $key => $err) { - OUTPUT_HTML(" · {--FATAL_NO--}".($key + 1).": ".$err."
"); - } - OUTPUT_HTML("

"); - } - define('__MYSQL_HOST' , $mysql['host']); - define('__MYSQL_DBASE' , $mysql['dbase']); - define('__MYSQL_PREFIX', $mysql['prefix']); - define('__MYSQL_LOGIN' , $mysql['login']); - define('__SPATH_VALUE' , REQUEST_POST('spath')); - define('__BURL_VALUE' , REQUEST_POST('burl')); - define('__TITLE_VALUE' , REQUEST_POST('title')); - define('__SLOGAN_VALUE', REQUEST_POST('slogan')); - define('__EMAIL_VALUE' , REQUEST_POST('email')); - - // Load template - LOAD_TEMPLATE("install_page2"); - break; - - case "3": - // Set more values - define('__SPATH_VALUE' , REQUEST_POST('spath')); - define('__BURL_VALUE' , REQUEST_POST('burl')); - define('__TITLE_VALUE' , REQUEST_POST('title')); - define('__SLOGAN_VALUE' , REQUEST_POST('slogan')); - define('__EMAIL_VALUE' , REQUEST_POST('email')); - - // Use default SMTP data - $smtpHost = constant('SMTP_HOSTNAME'); - $smtpUser = constant('SMTP_USER'); - $smtpPass1 = constant('SMTP_PASSWORD'); - $smtpPass2 = constant('SMTP_PASSWORD'); - - // Overwrite it with the data from sent (failed) form - if (REQUEST_ISSET_POST(('smtp_host'))) $smtpHost = REQUEST_POST('smtp_host'); - if (REQUEST_ISSET_POST(('smtp_user'))) $smtpUser = REQUEST_POST('smtp_user'); - - // MySQL settings - define('__MYSQL_HOST' , $mysql['host']); - define('__MYSQL_DBASE' , $mysql['dbase']); - define('__MYSQL_PREFIX' , $mysql['prefix']); - define('__MYSQL_LOGIN' , $mysql['login']); - define('__MYSQL_PASS1' , $mysql['pass1']); - define('__MYSQL_PASS2' , $mysql['pass2']); - - // Set constants for SMTP data - define('__SMTP_HOST' , $smtpHost); - define('__SMTP_USER' , $smtpUser); - define('__SMTP_PASS1' , $smtpPass1); - define('__SMTP_PASS2' , $smtpPass2); - - // Load template - LOAD_TEMPLATE("install_page3"); - break; - - case "5": // Misc settings - // General settings - define('__SPATH_VALUE' , REQUEST_POST('spath')); - define('__BURL_VALUE' , REQUEST_POST('burl')); - define('__TITLE_VALUE' , REQUEST_POST('title')); - define('__SLOGAN_VALUE' , REQUEST_POST('slogan')); - define('__EMAIL_VALUE' , REQUEST_POST('email')); - - // MySQL settings - define('__MYSQL_HOST' , $mysql['host']); - define('__MYSQL_DBASE' , $mysql['dbase']); - define('__MYSQL_PREFIX' , $mysql['prefix']); - define('__MYSQL_LOGIN' , $mysql['login']); - - // SMTP settings - define('__SMTP_HOST' , REQUEST_POST('smtp_host')); - define('__SMTP_USER' , REQUEST_POST('smtp_user')); - define('__SMTP_PASS' , REQUEST_POST('smtp_pass1')); - OUTPUT_HTML("
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
{--HEADER_TEXT_PAGE5--} -
 
- {--TEXT_PAGE_5--} -
 
{--LANG_OUTPUT_MODE--}:   - -
 
{--WARN_NO_PASSWORD--}:   - -
 
{--LANG_WRITE_FOOTER--}:   - -
 
{--INSTALL_ENABLE_BACKLINK--}:   - -
 
"); - foreach ($mysql as $key => $value) { - OUTPUT_HTML(" "); - } - OUTPUT_HTML(" - - - - - - - - -
 
-
"); - break; - - case "finalize": // Write captured data to files - if ((REQUEST_ISSET_POST(('finalize'))) && (!isInstalled())) { - // You have submitted data then we have to reset the fatal messages - $SQLs = array(); - - // Connect to MySQL server - SQL_CONNECT($mysql['host'], $mysql['login'], $mysql['pass1'], __FILE__, __LINE__); - if (SQL_IS_LINK_UP()) { - // Seems to work, also right database? - if (SQL_SELECT_DB($mysql['dbase'], __FILE__, __LINE__) === true) { - // Automatically run install.sql - if ((FILE_READABLE(REQUEST_POST('spath')."install/tables.sql")) && (FILE_READABLE(REQUEST_POST('spath')."install/menu-".GET_LANGUAGE().".sql"))) { - // Both exists so import them - foreach (array("tables.sql", "menu-".GET_LANGUAGE().".sql") as $dump) { - // Should be save here because file_exists() is there but we check it again. :) - $FQFN = secureString(REQUEST_POST('spath')) . "install/" . $dump; - if (FILE_READABLE($FQFN)) { - // Read the file - $fileContent = READ_FILE($FQFN, true); - - // And split it up against ;\n ... - $SQLs = merge_array($SQLs, explode(";\n", $fileContent)); - } else { - // Not readable! - debug_report_bug(sprintf("SQL dump %s is not readable!", $dump)); - } - } // END - foreach - - // Are some SQLs found? - if (count($SQLs) == 0) { - // Abort here - addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_SQL_IMPORT_FAILED')); - return; - } // END - if - - // Now run all queries through and try to keep out empty or comment queries - foreach ($SQLs as $sql) { - // Trim spaces away - $sql = trim($sql); - - // Is this query not empty and not a comment? - if ((!empty($sql)) && (substr($sql, 0, 2) != "--") && (substr($sql, 0, 1) != "#")) { - // Then run it! - SQL_QUERY($sql, __FILE__, __LINE__); - } // END - if - } // END - foreach - - // Ok, all done. So we can write the config data to the php files - if (REQUEST_POST('spath') != constant('PATH')) changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SERVER-PATH", "define('PATH', \"", "\");", REQUEST_POST('spath'), 0); - if (REQUEST_POST('burl') != constant('URL')) changeDataInFile(REQUEST_POST('spath')."inc/config.php", "HOST-URL", "define('URL', \"", "\");", REQUEST_POST('burl'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MAIN_TITLE", "define('MAIN_TITLE', \"", "\");", REQUEST_POST('title'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SLOGAN", "define('SLOGAN', \"", "\");", REQUEST_POST('slogan'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "WEBMASTER", "define('WEBMASTER', \"", "\");", REQUEST_POST('email'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "NULLPASS-WARNING", "define('warn_no_pass', ", ");", REQUEST_POST('warn_no_pass'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "WRITE-FOOTER", "define('WRITE_FOOTER', ", ");", REQUEST_POST('wfooter'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "BACKLINK", "define('ENABLE_BACKLINK', ", ");", REQUEST_POST('blink'), 0); - // DEACTIVATED: changeDataInFile(REQUEST_POST('spath')."inc/config.php", "OUTPUT-MODE", "define('OUTPUT_MODE', \"", "\");", REQUEST_POST('omode'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-HOST", " 'host' => \"", "\",", $mysql['host'], 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-DBASE", " 'dbase' => \"", "\",", $mysql['dbase'], 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-LOGIN", " 'login' => \"", "\",", $mysql['login'], 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-PASSWORD", " 'password' => \"", "\",", $mysql['pass1'], 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-PREFIX", "define('_MYSQL_PREFIX', \"", "\");", $mysql['prefix'], 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-HOSTNAME", "define('SMTP_HOSTNAME', \"", "\");", REQUEST_POST('smtp_host'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-USER", "define('SMTP_USER', \"", "\");", REQUEST_POST('smtp_user'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-PASSWORD", "define('SMTP_PASSWORD', \"", "\");", REQUEST_POST('smtp_pass1'), 0); - changeDataInFile(REQUEST_POST('spath')."inc/config.php", "INSTALLED", "define('mxchange_installed', ", ");", "true", 0); - } else { - // Installation area not found! - addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_MISSING_DUMPS')); - } - } // END - if - } // END - if - - if (getTotalFatalErrors() > 0) { - $OUT = ""; - foreach (getFatalArray() as $value) { - $OUT .= "
  • ".$value."
  • \n"; - } // END foreach - define('__FATAL_ERROR_LI', $OUT); - $OUT = ""; - foreach ($mysql as $key => $value) { - $OUT .= " \n"; - } // END foreach - define('__MYSQL_DATA' , $OUT); - define('__SPATH_VALUE' , REQUEST_POST('spath')); - define('__BURL_VALUE' , REQUEST_POST('burl')); - define('__TITLE_VALUE' , REQUEST_POST('title')); - define('__SMTP_HOST' , REQUEST_POST('smtp_host')); - define('__SMTP_USER' , REQUEST_POST('smtp_user')); - define('__SMTP_PASS' , REQUEST_POST('smtp_pass1')); - - // Load template - LOAD_TEMPLATE("install_fatal_errors"); - } else { - // Installation is done! - LOAD_URL("install.php?page=finalize"); - } - } elseif (isInstalled()) { - // Redirection after writing data... :-) - LOAD_TEMPLATE("install_finished"); - } else { - // Something goes wrong during installation! :-( - addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_FINALIZER_FAILED')); - LOAD_INC("inc/fatal_errors.php"); - } - break; - - default: - DEBUG_LOG(__FILE__, __LINE__, sprintf("Wrong page %s detected", REQUEST_GET('page'))); - OUTPUT_HTML("
    {--WRONG_PAGE--}"); - break; +// Is the mailer installed or no admin registered so far? +if ((!isInstalled()) || (!isAdminRegistered())) { + // Construct include file name + $inc = 'inc/install/install_page_' . getRequestElement('install_page'); + + // Is the include file there? + if (isIncludeReadable($inc)) { + // Then load it + loadIncludeOnce($inc); + } else { + // Not found, may be invalid page + logDebugMessage(__FILE__, __LINE__, sprintf("Wrong install_page=%s detected", getRequestElement('install_page'))); + addTemplateToInstallContent('admin_settings_unsaved', '{--WRONG_PAGE--}'); } } else { // Already installed! - addFatalMessage(__FILE__, __LINE__, getMessage('ALREADY_INSTALLED')); + addFatalMessage(__FILE__, __LINE__, '{--ALREADY_INSTALLED--}'); } -// +// [EOF] ?>