X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Finstall-inc.php;h=dad33f5438c98e51f9164c01a92ab512dc337287;hb=59bd8a9805c51c895a92cc12825f4cbdfd792597;hp=7c3860c9e386b9b781beb759cf65efce862850b1;hpb=c5a4b89497cf1430b387b43e0c7808ef6dac0acd;p=mailer.git diff --git a/inc/install-inc.php b/inc/install-inc.php index 7c3860c9e3..dad33f5438 100644 --- a/inc/install-inc.php +++ b/inc/install-inc.php @@ -41,96 +41,34 @@ if (!defined('__SECURITY')) { require($INC); } -// -function install_WriteData ($file, $comment, $prefix, $suffix, $DATA, $sneak=0) { - // Initialize all and count up the "seak" value - $done = false; - $next = -1; - $sneak++; - - if (FILE_READABLE($file)) { - $search = "CFG: ".$comment; - $tmp = $file.".tmp"; - $fp = @fopen($file, 'r') or OUTPUT_HTML("READ: ".$file."
"); - if (is_resource($fp)) { - $fp_tmp = @fopen($tmp, 'w') or OUTPUT_HTML("WRITE: ".$tmp."
"); - if (is_resource($fp_tmp)) { - while (!feof($fp)) { - $line = fgets ($fp, 10240); - //* DEBUG: */ echo $search."/".htmlentities($line)."
\n"; - $found = strpos($line, $search); - //* DEBUG: */ echo "FOUND: "; - //* DEBUG: */ var_dump($found); - //* DEBUG: */ echo "
\n"; - if ($found !== false) $next = 0; - if ($next > -1) { - if ($next == $sneak) { - $next = -1; - $line = $prefix.$DATA.$suffix."\n"; - //* DEBUG: */ echo "NEW: ".htmlentities($line)."
\n"; - } else { - $next++; - } - } // END - if - //* DEBUG: */ echo "WRITE: ".htmlentities($line)."
\n"; - fputs($fp_tmp, $line); - } // END - while - fclose($fp_tmp); - - // Finished writing tmp file - $done = true; - } // END - if - - // Close source directory - fclose($fp); - - if (($done) && (is_writeable($file))) { - // Copy back tmp file and delete tmp :-) - @copy($tmp, $file); - @unlink($tmp); - } else { - OUTPUT_HTML("TMP: UNDONE!"); - } - } // END - if - } else { - OUTPUT_HTML("404: ".$file."
"); - } -} - -// +// Init variables $mysql = ""; -if (isset($_POST['mysql']) && is_array($_POST['mysql'])) $mysql = $_POST['mysql']; - -if (URL != "http://your-server.com") { - // Already installed??? - $burl = URL; -} elseif (empty($burl)) { - // Auto-detect URL - $burl = "http://".$SERVER_NAME.$_SERVER['PHP_SELF']; - $burl = substr($burl, 0, strpos($burl, "install.php")); -} +if ((isset($_POST['mysql'])) && (is_array($_POST['mysql']))) $mysql = $_POST['mysql']; // Check if both passwords from SMTP are matching if ((isset($_GET['page']) && ($_GET['page'] == 5))) { // Okay, we have to check it if (!empty($_POST['smtp_user']) && (empty($_POST['smtp_host']))) { // Hostname not set - OUTPUT_HTML(INSTALL_SMTP_HOSTNAME_EMPTY."
"); + OUTPUT_HTML(getMessage('INSTALL_SMTP_HOSTNAME_EMPTY')."
"); $_GET['page'] = 3; } // END - if + if ((empty($_POST['smtp_pass1'])) && (!empty($_POST['smtp_pass2']))) { // Password is empty - OUTPUT_HTML(INSTALL_SMTP_PASS1_EMPTY."
"); + OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS1_EMPTY')."
"); $_GET['page'] = 3; } // END - if + if ((!empty($_POST['smtp_pass1'])) && (empty($_POST['smtp_pass2']))) { // Password repeat is empty - OUTPUT_HTML(INSTALL_SMTP_PASS2_EMPTY."
"); + OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS2_EMPTY')."
"); $_GET['page'] = 3; } // END - if + if ($_POST['smtp_pass1'] != $_POST['smtp_pass1']) { // Passwords are not matching - OUTPUT_HTML(INSTALL_SMTP_PASS_MISMATCH."
"); + OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS_MISMATCH')."
"); $_GET['page'] = 3; } // END - if } // END - if @@ -139,7 +77,7 @@ if ((isset($_GET['page']) && ($_GET['page'] == 5))) { if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndTrue('admin_registered'))) { // Set URL for FORM actions - define('__BURL_ACTION', $burl); + define('__BURL_ACTION', constant('URL')); // Output page for entered value switch ($_GET['page']) @@ -149,12 +87,7 @@ if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndT break; case "1": // Server path, base URL - define('__PATH_LEN' , strlen(PATH)); - define('__BURL_LEN' , strlen($burl)); - define('__TITLE_LEN' , strlen(MAIN_TITLE)); - define('__SLOGAN_LEN' , strlen(SLOGAN)); - define('__WEBMASTER_LEN', (strlen(WEBMASTER) * 3)); - + // @Profi-Concept: Hab meine Meinung doch geaendert! :-) // Load template LOAD_TEMPLATE("install_page1"); break; @@ -164,12 +97,12 @@ if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndT if (empty($mysql['login'])) $mysql['login'] = "your_login"; if (empty($mysql['host'])) $mysql['host'] = "localhost"; if (empty($mysql['prefix'])) $mysql['prefix'] = "mxchange_"; - if ((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) { - OUTPUT_HTML(""); + if (getTotalFatalErrors() > 0) { + OUTPUT_HTML(""); foreach ($FATAL as $key => $err) { - OUTPUT_HTML(" · ".FATAL_NO.($key + 1).": ".$err."
"); + OUTPUT_HTML(" · {--FATAL_NO--}".($key + 1).": ".$err."
"); } - OUTPUT_HTML("

"); + OUTPUT_HTML("

"); } define('__MYSQL_HOST' , $mysql['host']); define('__MYSQL_DBASE' , $mysql['dbase']); @@ -194,10 +127,10 @@ if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndT define('__EMAIL_VALUE' , $_POST['email']); // Use default SMTP data - $smtpHost = SMTP_HOSTNAME; - $smtpUser = SMTP_USER; - $smtpPass1 = SMTP_PASSWORD; - $smtpPass2 = SMTP_PASSWORD; + $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 (!empty($_POST['smtp_host'])) $smtpHost = $_POST['smtp_host']; @@ -239,101 +172,101 @@ if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndT define('__SMTP_HOST' , $_POST['smtp_host']); define('__SMTP_USER' , $_POST['smtp_user']); define('__SMTP_PASS' , $_POST['smtp_pass1']); - OUTPUT_HTML("
- - - - - - - - - - - - - - - - - + + +
- ".HEADER_TEXT_PAGE5." -
 
- ".TEXT_PAGE_5." -
 
".LANG_OUTPUT_MODE.":   - -
 
".WARN_NO_PASSWORD.":   - + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - + + + + + + + + + - - -
+
{--HEADER_TEXT_PAGE5--} +
 
+ {--TEXT_PAGE_5--} +
 
{--LANG_OUTPUT_MODE--}:   + +
 
{--WARN_NO_PASSWORD--}:   + -
 
".LANG_WRITE_FOOTER.":   - +
 
{--LANG_WRITE_FOOTER--}:   + -
 
".INSTALL_ENABLE_BACKLINK.":   - -
 
"); + OUTPUT_HTML(">{--YES--} + + +
 
{--INSTALL_ENABLE_BACKLINK--}:   + +
 
"); foreach ($mysql as $key => $value) { - OUTPUT_HTML(" "); + OUTPUT_HTML(" "); } - OUTPUT_HTML(" - - - - - - - - -
 
-"); + OUTPUT_HTML(" + + + + + + + + +
 
+"); break; case "finalize": // Write captured data to files if ((!empty($_POST['finalize'])) && (!isBooleanConstantAndTrue('mxchange_installed'))) { // You have submitted data then we have to reset the fatal messages - $FATAL = array(); $SQLs = array(); + $SQLs = array(); // Connect to MySQL server $link = SQL_CONNECT($mysql['host'], $mysql['login'], $mysql['pass1'], __FILE__, __LINE__); @@ -346,24 +279,23 @@ if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndT // 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. :) - $file = secureString($_POST['spath']) . "install/" . $dump; - if (FILE_READABLE($file)) { - // Load the file - $sql = implode("", file($file)); - - // Remove some unwanted chars - $sql = str_replace("\r", "", $sql); - $sql = str_replace("\n\n", "\n", $sql); + $FQFN = secureString($_POST['spath']) . "install/" . $dump; + if (FILE_READABLE($FQFN)) { + // Read the file + $SQLs = READ_FILE($FQFN, true); // And split it up against ;\n ... - $SQLs = array_merge($SQLs, explode(";\n", $sql)); - } // END - if + $SQLs = merge_array($SQLs, explode(";\n", $sql)); + } 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 - ADD_FATAL(INSTALL_SQL_IMPORT_FAILED); + addFatalMessage(getMessage('INSTALL_SQL_IMPORT_FAILED')); return; } // END - if @@ -380,43 +312,40 @@ if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndT } // END - foreach // Ok, all done. So we can write the config data to the php files - if ($_POST['spath'] != PATH) install_WriteData($_POST['spath']."inc/config.php", "SERVER-PATH", "define('PATH', \"", "\");", $_POST['spath'], 0); - if ($_POST['burl'] != URL) install_WriteData($_POST['spath']."inc/config.php", "HOST-URL", "define('URL', \"", "\");", $_POST['burl'], 0); - install_WriteData($_POST['spath']."inc/config.php", "MAIN_TITLE", "define('MAIN_TITLE', \"", "\");", $_POST['title'], 0); - install_WriteData($_POST['spath']."inc/config.php", "SLOGAN", "define('SLOGAN', \"", "\");", $_POST['slogan'], 0); - install_WriteData($_POST['spath']."inc/config.php", "WEBMASTER", "define('WEBMASTER', \"", "\");", $_POST['email'], 0); - install_WriteData($_POST['spath']."inc/config.php", "NULLPASS-WARNING", "define('warn_no_pass', ", ");", $_POST['warn_no_pass'], 0); - install_WriteData($_POST['spath']."inc/config.php", "WRITE-FOOTER", "define('WRITE_FOOTER', ", ");", $_POST['wfooter'], 0); - install_WriteData($_POST['spath']."inc/config.php", "BACKLINK", "define('ENABLE_BACKLINK', ", ");", $_POST['blink'], 0); - // install_WriteData($_POST['spath']."inc/config.php", "OUTPUT-MODE", "define('OUTPUT_MODE', \"", "\");", $_POST['omode'], 0); - install_WriteData($_POST['spath']."inc/config.php", "MYSQL-HOST", " 'host' => \"", "\",", $mysql['host'], 0); - install_WriteData($_POST['spath']."inc/config.php", "MYSQL-DBASE", " 'dbase' => \"", "\",", $mysql['dbase'], 0); - install_WriteData($_POST['spath']."inc/config.php", "MYSQL-LOGIN", " 'login' => \"", "\",", $mysql['login'], 0); - install_WriteData($_POST['spath']."inc/config.php", "MYSQL-PASSWORD", " 'password' => \"", "\",", $mysql['pass1'], 0); - install_WriteData($_POST['spath']."inc/config.php", "MYSQL-PREFIX", "define('_MYSQL_PREFIX', \"", "\");", $mysql['prefix'], 0); - install_WriteData($_POST['spath']."inc/config.php", "SMTP-HOSTNAME", "define('SMTP_HOSTNAME', \"", "\");", $_POST['smtp_host'], 0); - install_WriteData($_POST['spath']."inc/config.php", "SMTP-USER", "define('SMTP_USER', \"", "\");", $_POST['smtp_user'], 0); - install_WriteData($_POST['spath']."inc/config.php", "SMTP-PASSWORD", "define('SMTP_PASSWORD', \"", "\");", $_POST['smtp_pass'], 0); - install_WriteData($_POST['spath']."inc/config.php", "INSTALLED", "define('mxchange_installed', ", ");", "true", 0); - - // Close the link - SQL_CLOSE($link, __FILE__, __LINE__); + if ($_POST['spath'] != constant('PATH')) changeDataInFile($_POST['spath']."inc/config.php", "SERVER-PATH", "define('PATH', \"", "\");", $_POST['spath'], 0); + if ($_POST['burl'] != constant('URL')) changeDataInFile($_POST['spath']."inc/config.php", "HOST-URL", "define('URL', \"", "\");", $_POST['burl'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "MAIN_TITLE", "define('MAIN_TITLE', \"", "\");", $_POST['title'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "SLOGAN", "define('SLOGAN', \"", "\");", $_POST['slogan'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "WEBMASTER", "define('WEBMASTER', \"", "\");", $_POST['email'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "NULLPASS-WARNING", "define('warn_no_pass', ", ");", $_POST['warn_no_pass'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "WRITE-FOOTER", "define('WRITE_FOOTER', ", ");", $_POST['wfooter'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "BACKLINK", "define('ENABLE_BACKLINK', ", ");", $_POST['blink'], 0); + // changeDataInFile($_POST['spath']."inc/config.php", "OUTPUT-MODE", "define('OUTPUT_MODE', \"", "\");", $_POST['omode'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "MYSQL-HOST", " 'host' => \"", "\",", $mysql['host'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "MYSQL-DBASE", " 'dbase' => \"", "\",", $mysql['dbase'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "MYSQL-LOGIN", " 'login' => \"", "\",", $mysql['login'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "MYSQL-PASSWORD", " 'password' => \"", "\",", $mysql['pass1'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "MYSQL-PREFIX", "define('_MYSQL_PREFIX', \"", "\");", $mysql['prefix'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "SMTP-HOSTNAME", "define('SMTP_HOSTNAME', \"", "\");", $_POST['smtp_host'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "SMTP-USER", "define('SMTP_USER', \"", "\");", $_POST['smtp_user'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "SMTP-PASSWORD", "define('SMTP_PASSWORD', \"", "\");", $_POST['smtp_pass'], 0); + changeDataInFile($_POST['spath']."inc/config.php", "INSTALLED", "define('mxchange_installed', ", ");", "true", 0); } else { // Installation area not found! - ADD_FATAL(INSTALL_MISSING_DUMPS); + addFatalMessage(getMessage('INSTALL_MISSING_DUMPS')); } } // END - if } // END - if - if ((sizeof($FATAL) > 0) || ((isset($FATAL[0])) && ($FATAL[0] != ''))) { + if (getTotalFatalErrors() > 0) { $OUT = ""; - foreach ($FATAL as $value) { - $OUT .= "
  • ".$value."
  • \n"; + foreach ($FATAL as $value) { + $OUT .= "
  • ".$value."
  • \n"; } // END foreach define('__FATAL_ERROR_LI', $OUT); $OUT = ""; foreach ($mysql as $key => $value) { - $OUT .= " \n"; + $OUT .= " \n"; } // END foreach define('__MYSQL_DATA' , $OUT); define('__SPATH_VALUE' , $_POST['spath']); @@ -426,54 +355,31 @@ if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndT define('__SMTP_USER' , $_POST['smtp_user']); define('__SMTP_PASS' , $_POST['smtp_pass']); - OUTPUT_HTML("
    - - - - - - - - - - - -
    - ".HEADER_MYSQL_ERRORS." -
     
    - ".TEXT_MYSQL_ERRORS." -
    -
      -".__FATAL_ERROR_LI." -
    -".__MYSQL_DATA." - - - - -
    -
    "); + // Load template + LOAD_TEMPLATE("install_fatal_errors"); } else { // Installation is done! - LOAD_URL($burl."/install.php?page=finalize"); + LOAD_URL("install.php?page=finalize"); } } elseif (isBooleanConstantAndTrue('mxchange_installed')) { // Redirection after writing data... :-) LOAD_TEMPLATE("install_finished"); } else { // Something goes wrong during installation! :-( - ADD_FATAL(INSTALL_FINALIZER_FAILED); - include ("inc/fatal_errors.php"); + addFatalMessage(getMessage('INSTALL_FINALIZER_FAILED')); + LOAD_INC("inc/fatal_errors.php"); } break; default: - DEBUG_LOG(__FILE__, __LINE__, sprintf("Wrong page %s detected.", $_GET['page'])); - OUTPUT_HTML(" ".WRONG_PAGE.""); + DEBUG_LOG(__FILE__, __LINE__, sprintf("Wrong page %s detected", $_GET['page'])); + OUTPUT_HTML("
    {--WRONG_PAGE--}"); break; } } else { - ADD_FATAL(ALREADY_INSTALLED); + // Already installed! + addFatalMessage(getMessage('ALREADY_INSTALLED')); } + // ?>