install/includes/stages/confirm.php
changeset 348 87e08a6e4fec
child 391 85f91037cd4f
equal deleted inserted replaced
347:299a90e28abc 348:87e08a6e4fec
       
     1 <?php
       
     2 
       
     3 /*
       
     4  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
       
     5  * Version 1.1.1
       
     6  * Copyright (C) 2006-2007 Dan Fuhry
       
     7  * Installation package
       
     8  * confirm.php - Installer installation summary/confirmation stage
       
     9  *
       
    10  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
       
    11  * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
       
    12  *
       
    13  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
       
    14  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
       
    15  */
       
    16 
       
    17 if ( !defined('IN_ENANO_INSTALL') )
       
    18   die();
       
    19 
       
    20 require_once( ENANO_ROOT . '/includes/constants.php' );
       
    21 
       
    22 $ui->show_header();
       
    23 ?>
       
    24 <h3>Enano is ready to install.</h3>
       
    25             <p>Almost there! You've entered all the information we need for now. Click Continue to install the Enano database.</p>
       
    26             <p style="font-size: smaller;"><b>A note on AES encryption:</b>
       
    27                Enano is currently configured to use <?php echo AES_BITS; ?>-bit AES encryption. While the default value of 192 bits is perfectly acceptable for most sites, those in need of extreme security will want to change this value to 256 bits (the maximum available strength). If you need to change the cipher strength, please edit the file includes/constants.php and then <u>restart</u> this installation. Do not click Continue below until you redo the installation process up until this point, or you will experience severe problems with logging into your site.
       
    28                </p>
       
    29             <form action="install.php?stage=install" method="post" name="install_login" onsubmit="return ( verify() && submit_encrypt() );"><?php
       
    30   foreach ( $_POST as $key => &$value )
       
    31   {
       
    32     if ( !preg_match('/^[a-z0-9_]+$/', $key) )
       
    33       die('You idiot hacker...');
       
    34     if ( $key == '_cont' )
       
    35       continue;
       
    36     $value_clean = str_replace(array('\\', '"', '<', '>'), array('\\\\', '\\"', '&lt;', '&gt;'), $value);
       
    37     echo "\n              <input type=\"hidden\" name=\"$key\" value=\"$value_clean\" />";
       
    38   }
       
    39 ?>
       
    40 
       
    41               <div style="text-align: center;">
       
    42                 <input type="submit" name="_cont" value="<?= $lang->get('meta_btn_continue'); ?>" />
       
    43               </div>
       
    44             </form>