install.php
author Dan
Wed, 12 Dec 2007 21:46:28 -0500
changeset 258 8be996c3740d
parent 256 f8356d9c3481
child 261 5f1cd51bf1be
permissions -rw-r--r--
Stable release: Enano CMS 1.0.3 (Dyrad)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
     1
<?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
     2
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
     3
/*
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
     4
 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
256
f8356d9c3481 Rebrand as 1.0.3 (Dyrad)
Dan
parents: 243
diff changeset
     5
 * Version 1.0.3 (Dyrad)
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
     6
 * Copyright (C) 2006-2007 Dan Fuhry
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
     7
 * install.php - handles everything related to installation and initial configuration
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
     8
 *
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
     9
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    10
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    11
 *
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    12
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    13
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    14
 */
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    15
 
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    16
@include('config.php');
222
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
    17
if( ( defined('ENANO_INSTALLED') || defined('MIDGET_INSTALLED') ) && ((isset($_GET['mode']) && ($_GET['mode']!='finish' && $_GET['mode']!='css') && $_GET['mode']!='showlicense') || !isset($_GET['mode'])))
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    18
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    19
  $_GET['title'] = 'Enano:Installation_locked';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    20
  require('includes/common.php');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    21
  die_friendly('Installation locked', '<p>The Enano installer has found a Enano installation in this directory. You MUST delete config.php if you want to re-install Enano.</p><p>If you wish to upgrade an older Enano installation to this version, please use the <a href="upgrade.php">upgrade script</a>.</p>');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    22
  exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    23
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    24
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    25
define('IN_ENANO_INSTALL', 'true');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    26
256
f8356d9c3481 Rebrand as 1.0.3 (Dyrad)
Dan
parents: 243
diff changeset
    27
define('ENANO_VERSION', '1.0.3');
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    28
// In beta versions, define ENANO_BETA_VERSION here
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    29
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    30
if(!defined('scriptPath')) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    31
  $sp = dirname($_SERVER['REQUEST_URI']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    32
  if($sp == '/' || $sp == '\\') $sp = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    33
  define('scriptPath', $sp);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    34
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    35
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    36
if(!defined('contentPath')) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    37
  $sp = dirname($_SERVER['REQUEST_URI']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    38
  if($sp == '/' || $sp == '\\') $sp = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    39
  define('contentPath', $sp);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    40
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    41
global $_starttime, $this_page, $sideinfo;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    42
$_starttime = microtime(true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    43
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    44
// Determine directory (special case for development servers)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    45
if ( strpos(__FILE__, '/repo/') && file_exists('.enanodev') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    46
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    47
  $filename = str_replace('/repo/', '/', __FILE__);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    48
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    49
else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    50
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    51
  $filename = __FILE__;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    52
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    53
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    54
define('ENANO_ROOT', dirname($filename));
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    55
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    56
function is_page($p)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    57
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    58
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    59
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    60
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    61
require('includes/wikiformat.php');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    62
require('includes/constants.php');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    63
require('includes/rijndael.php');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    64
require('includes/functions.php');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    65
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    66
strip_magic_quotes_gpc();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    67
$neutral_color = 'C';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    68
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    69
//
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    70
// INSTALLER LIBRARY
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    71
//
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    72
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    73
function run_installer_stage($stage_id, $stage_name, $function, $failure_explanation, $allow_skip = true)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    74
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    75
  static $resumed = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    76
  static $resume_stack = array();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    77
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    78
  if ( empty($resume_stack) && isset($_POST['resume_stack']) && preg_match('/[a-z_]+((\|[a-z_]+)+)/', $_POST['resume_stack']) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    79
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    80
    $resume_stack = explode('|', $_POST['resume_stack']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    81
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    82
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    83
  $already_run = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    84
  if ( in_array($stage_id, $resume_stack) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    85
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    86
    $already_run = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    87
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    88
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    89
  if ( !$resumed )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    90
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    91
    if ( !isset($_GET['stage']) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    92
      $resumed = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    93
    if ( isset($_GET['stage']) && $_GET['stage'] == $stage_id )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    94
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    95
      $resumed = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    96
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    97
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    98
  if ( !$resumed && $allow_skip )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
    99
  {
214
43add2be1371 Removed stray debug message in installer
Dan
parents: 211
diff changeset
   100
    echo_stage_success($stage_id, $stage_name);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   101
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   102
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   103
  if ( !function_exists($function) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   104
    die('libenanoinstall: CRITICAL: function "' . $function . '" for ' . $stage_id . ' doesn\'t exist');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   105
  $result = @call_user_func($function, false, $already_run);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   106
  if ( $result )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   107
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   108
    echo_stage_success($stage_id, $stage_name);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   109
    $resume_stack[] = $stage_id;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   110
    return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   111
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   112
  else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   113
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   114
    echo_stage_failure($stage_id, $stage_name, $failure_explanation, $resume_stack);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   115
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   116
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   117
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   118
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   119
function start_install_table()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   120
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   121
  echo '<table border="0" cellspacing="0" cellpadding="0">' . "\n";
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   122
  ob_start();
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   123
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   124
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   125
function close_install_table()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   126
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   127
  echo '</table>' . "\n\n";
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   128
  ob_end_flush();
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   129
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   130
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   131
function echo_stage_success($stage_id, $stage_name)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   132
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   133
  global $neutral_color;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   134
  $neutral_color = ( $neutral_color == 'A' ) ? 'C' : 'A';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   135
  echo '<tr><td style="width: 500px; background-color: #' . "{$neutral_color}{$neutral_color}FF{$neutral_color}{$neutral_color}" . '; padding: 0 5px;">' . htmlspecialchars($stage_name) . '</td><td style="padding: 0 5px;"><img alt="Done" src="images/good.gif" /></td></tr>' . "\n";
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   136
  ob_flush();
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   137
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   138
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   139
function echo_stage_failure($stage_id, $stage_name, $failure_explanation, $resume_stack)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   140
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   141
  global $neutral_color;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   142
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   143
  $neutral_color = ( $neutral_color == 'A' ) ? 'C' : 'A';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   144
  echo '<tr><td style="width: 500px; background-color: #' . "FF{$neutral_color}{$neutral_color}{$neutral_color}{$neutral_color}" . '; padding: 0 5px;">' . htmlspecialchars($stage_name) . '</td><td style="padding: 0 5px;"><img alt="Failed" src="images/bad.gif" /></td></tr>' . "\n";
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   145
  ob_flush();
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   146
  close_install_table();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   147
  $post_data = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   148
  $mysql_error = mysql_error();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   149
  foreach ( $_POST as $key => $value )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   150
  {
216
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
   151
    // FIXME: These should really also be sanitized for double quotes
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   152
    $value = htmlspecialchars($value);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   153
    $key = htmlspecialchars($key);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   154
    $post_data .= "          <input type=\"hidden\" name=\"$key\" value=\"$value\" />\n";
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   155
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   156
  echo '<form action="install.php?mode=install&amp;stage=' . $stage_id . '" method="post">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   157
          ' . $post_data . '
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   158
          <input type="hidden" name="resume_stack" value="' . htmlspecialchars(implode('|', $resume_stack)) . '" />
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   159
          <h3>Enano installation failed.</h3>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   160
           <p>' . $failure_explanation . '</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   161
           ' . ( !empty($mysql_error) ? "<p>The error returned from MySQL was: $mysql_error</p>" : '' ) . '
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   162
           <p>When you have corrected the error, click the button below to attempt to continue the installation.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   163
           <p style="text-align: center;"><input type="submit" value="Retry installation" /></p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   164
        </form>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   165
  global $template, $template_bak;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   166
  if ( is_object($template_bak) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   167
    $template_bak->footer();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   168
  else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   169
    $template->footer();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   170
  exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   171
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   172
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   173
//
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   174
// INSTALLER STAGES
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   175
//
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   176
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   177
function stg_mysql_connect($act_get = false)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   178
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   179
  static $conn = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   180
  if ( $act_get )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   181
    return $conn;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   182
  
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   183
  $db_user =& $_POST['db_user'];
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   184
  $db_pass =& $_POST['db_pass'];
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   185
  $db_name =& $_POST['db_name'];
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   186
  
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   187
  if ( !preg_match('/^[a-z0-9_-]+$/', $db_name) )
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   188
  {
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   189
    $db_name = htmlspecialchars($db_name);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   190
    die("<p>SECURITY: malformed database name \"$db_name\"</p>");
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   191
  }
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   192
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   193
  // First, try to connect using the normal credentials
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   194
  $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], $_POST['db_pass']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   195
  if ( !$conn )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   196
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   197
    // Connection failed. Do we have the root username and password?
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   198
    if ( !empty($_POST['db_root_user']) && !empty($_POST['db_root_pass']) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   199
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   200
      $conn_root = @mysql_connect($_POST['db_host'], $_POST['db_root_user'], $_POST['db_root_pass']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   201
      if ( !$conn_root )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   202
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   203
        // Couldn't connect using either set of credentials. Bail out.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   204
        return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   205
      }
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   206
      unset($db_user, $db_pass);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   207
      $db_user = mysql_real_escape_string($_POST['db_user']);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   208
      $db_pass = mysql_real_escape_string($_POST['db_pass']);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   209
      // Create the user account
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   210
      $q = @mysql_query("GRANT ALL PRIVILEGES ON test.* TO '{$db_user}'@'localhost' IDENTIFIED BY '$db_pass' WITH GRANT OPTION;", $conn_root);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   211
      if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   212
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   213
        return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   214
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   215
      // Revoke privileges from test, we don't need them
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   216
      $q = @mysql_query("REVOKE ALL PRIVILEGES ON test.* FROM '{$db_user}'@'localhost';", $conn_root);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   217
      if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   218
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   219
        return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   220
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   221
      if ( $_POST['db_host'] != 'localhost' && $_POST['db_host'] != '127.0.0.1' && $_POST['db_host'] != '::1' )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   222
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   223
        // If not connecting to a server running on localhost, allow from any host
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   224
        // this is safer than trying to detect the hostname of the webserver, but less secure
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   225
        $q = @mysql_query("GRANT ALL PRIVILEGES ON test.* TO '{$db_user}'@'%' IDENTIFIED BY '$db_pass' WITH GRANT OPTION;", $conn_root);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   226
        if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   227
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   228
          return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   229
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   230
        // Revoke privileges from test, we don't need them
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   231
        $q = @mysql_query("REVOKE ALL PRIVILEGES ON test.* FROM '{$db_user}'@'%';", $conn_root);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   232
        if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   233
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   234
          return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   235
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   236
      }
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   237
      mysql_close($conn_root);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   238
      $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], $_POST['db_pass']);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   239
      if ( !$conn )
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   240
      {
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   241
        // This should honestly never happen.
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   242
        return false;
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   243
      }
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   244
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   245
  }
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   246
  $q = @mysql_query("USE `$db_name`;", $conn);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   247
  if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   248
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   249
    // access denied to the database; try the whole root schenanegan again
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   250
    if ( !empty($_POST['db_root_user']) && !empty($_POST['db_root_pass']) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   251
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   252
      $conn_root = @mysql_connect($_POST['db_host'], $_POST['db_root_user'], $_POST['db_root_pass']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   253
      if ( !$conn_root )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   254
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   255
        // Couldn't connect as root; bail out
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   256
        return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   257
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   258
      // create the database, if it doesn't exist
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   259
      $q = @mysql_query("CREATE DATABASE IF NOT EXISTS `$db_name`;", $conn_root);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   260
      if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   261
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   262
        // this really should never fail, so don't give any tolerance to it
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   263
        return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   264
      }
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   265
      unset($db_user, $db_pass);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   266
      $db_user = mysql_real_escape_string($_POST['db_user']);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   267
      $db_pass = mysql_real_escape_string($_POST['db_pass']);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   268
      // we're in with root rights; grant access to the database
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   269
      $q = @mysql_query("GRANT ALL PRIVILEGES ON `$db_name`.* TO '{$db_user}'@'localhost';", $conn_root);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   270
      if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   271
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   272
        return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   273
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   274
      if ( $_POST['db_host'] != 'localhost' && $_POST['db_host'] != '127.0.0.1' && $_POST['db_host'] != '::1' )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   275
      {
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   276
        $q = @mysql_query("GRANT ALL PRIVILEGES ON `$db_name`.* TO '{$db_user}'@'%';", $conn_root);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   277
        if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   278
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   279
          return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   280
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   281
      }
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   282
      mysql_close($conn_root);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   283
      // grant tables have hopefully been flushed, kill and reconnect our regular user connection
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   284
      mysql_close($conn);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   285
      $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], $_POST['db_pass']);
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   286
      if ( !$conn )
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   287
      {
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   288
        return false;
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   289
      }
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   290
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   291
    else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   292
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   293
      return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   294
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   295
    // try again
207
808281bfd200 Patched in dash-in-database-name fix from unstable
Dan
parents: 206
diff changeset
   296
    $q = @mysql_query("USE `$db_name`;", $conn);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   297
    if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   298
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   299
      // really failed this time; bail out
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   300
      return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   301
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   302
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   303
  // connected and database exists
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   304
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   305
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   306
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   307
function stg_drop_tables()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   308
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   309
  $conn = stg_mysql_connect(true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   310
  if ( !$conn )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   311
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   312
  // Our list of tables included in Enano
218
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   313
  $tables = Array( 'categories', 'comments', 'config', 'logs', 'page_text', 'session_keys', 'pages', 'users', 'users_extra', 'themes', 'buddies', 'banlist', 'files', 'privmsgs', 'sidebar', 'hits', 'search_index', 'groups', 'group_members', 'acl', 'tags', 'page_groups', 'page_group_members' );
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   314
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   315
  // Drop each table individually; if it fails, it probably means we're trying to drop a
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   316
  // table that didn't exist in the Enano version we're deleting the database for.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   317
  foreach ( $tables as $table )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   318
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   319
    // Remember that table_prefix is sanitized.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   320
    $table = "{$_POST['table_prefix']}$table";
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   321
    @mysql_query("DROP TABLE $table;", $conn);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   322
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   323
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   324
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   325
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   326
function stg_decrypt_admin_pass($act_get = false)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   327
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   328
  static $decrypted_pass = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   329
  if ( $act_get )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   330
    return $decrypted_pass;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   331
  
229
b2f985e4cef3 Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents: 227
diff changeset
   332
  $aes = AESCrypt::singleton(AES_BITS, AES_BLOCKSIZE);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   333
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   334
  if ( !empty($_POST['crypt_data']) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   335
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   336
    require('config.new.php');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   337
    if ( !isset($cryptkey) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   338
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   339
      return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   340
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   341
    define('_INSTRESUME_AES_KEYBACKUP', $key);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   342
    $key = hexdecode($cryptkey);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   343
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   344
    $decrypted_pass = $aes->decrypt($_POST['crypt_data'], $key, ENC_HEX);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   345
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   346
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   347
  else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   348
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   349
    $decrypted_pass = $_POST['admin_pass'];
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   350
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   351
  if ( empty($decrypted_pass) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   352
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   353
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   354
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   355
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   356
function stg_generate_aes_key($act_get = false)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   357
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   358
  static $key = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   359
  if ( $act_get )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   360
    return $key;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   361
  
229
b2f985e4cef3 Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents: 227
diff changeset
   362
  $aes = AESCrypt::singleton(AES_BITS, AES_BLOCKSIZE);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   363
  $key = $aes->gen_readymade_key();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   364
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   365
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   366
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   367
function stg_parse_schema($act_get = false)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   368
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   369
  static $schema;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   370
  if ( $act_get )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   371
    return $schema;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   372
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   373
  $admin_pass = stg_decrypt_admin_pass(true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   374
  $key = stg_generate_aes_key(true);
229
b2f985e4cef3 Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents: 227
diff changeset
   375
  $aes = AESCrypt::singleton(AES_BITS, AES_BLOCKSIZE);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   376
  $key = $aes->hextostring($key);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   377
  $admin_pass = $aes->encrypt($admin_pass, $key, ENC_HEX);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   378
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   379
  $cacheonoff = is_writable(ENANO_ROOT.'/cache/') ? '1' : '0';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   380
  
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   381
  $admin_user = $_POST['admin_user'];
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   382
  $admin_user = str_replace('_', ' ', $admin_user);
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   383
  $admin_user = mysql_real_escape_string($admin_user);
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   384
  
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   385
  $schema = file_get_contents('schema.sql');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   386
  $schema = str_replace('{{SITE_NAME}}',    mysql_real_escape_string($_POST['sitename']   ), $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   387
  $schema = str_replace('{{SITE_DESC}}',    mysql_real_escape_string($_POST['sitedesc']   ), $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   388
  $schema = str_replace('{{COPYRIGHT}}',    mysql_real_escape_string($_POST['copyright']  ), $schema);
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   389
  $schema = str_replace('{{ADMIN_USER}}',   $admin_user                                    , $schema);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   390
  $schema = str_replace('{{ADMIN_PASS}}',   mysql_real_escape_string($admin_pass          ), $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   391
  $schema = str_replace('{{ADMIN_EMAIL}}',  mysql_real_escape_string($_POST['admin_email']), $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   392
  $schema = str_replace('{{ENABLE_CACHE}}', mysql_real_escape_string($cacheonoff          ), $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   393
  $schema = str_replace('{{REAL_NAME}}',    '',                                              $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   394
  $schema = str_replace('{{TABLE_PREFIX}}', $_POST['table_prefix'],                          $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   395
  $schema = str_replace('{{VERSION}}',      ENANO_VERSION,                                   $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   396
  $schema = str_replace('{{ADMIN_EMBED_PHP}}', $_POST['admin_embed_php'],                    $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   397
  // Not anymore!! :-D
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   398
  // $schema = str_replace('{{BETA_VERSION}}', ENANO_BETA_VERSION,                              $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   399
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   400
  if(isset($_POST['wiki_mode']))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   401
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   402
    $schema = str_replace('{{WIKI_MODE}}', '1', $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   403
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   404
  else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   405
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   406
    $schema = str_replace('{{WIKI_MODE}}', '0', $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   407
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   408
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   409
  // Build an array of queries      
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   410
  $schema = explode("\n", $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   411
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   412
  foreach ( $schema as $i => $sql )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   413
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   414
    $query =& $schema[$i];
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   415
    $t = trim($query);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   416
    if ( empty($t) || preg_match('/^(\#|--)/i', $t) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   417
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   418
      unset($schema[$i]);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   419
      unset($query);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   420
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   421
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   422
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   423
  $schema = array_values($schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   424
  $schema = implode("\n", $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   425
  $schema = explode(";\n", $schema);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   426
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   427
  foreach ( $schema as $i => $sql )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   428
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   429
    $query =& $schema[$i];
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   430
    if ( substr($query, ( strlen($query) - 1 ), 1 ) != ';' )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   431
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   432
      $query .= ';';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   433
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   434
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   435
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   436
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   437
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   438
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   439
function stg_install($_unused, $already_run)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   440
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   441
  // This one's pretty easy.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   442
  $conn = stg_mysql_connect(true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   443
  if ( !is_resource($conn) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   444
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   445
  $schema = stg_parse_schema(true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   446
  if ( !is_array($schema) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   447
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   448
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   449
  // If we're resuming installation, the encryption key was regenerated.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   450
  // This means we'll have to update the encrypted password in the database.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   451
  if ( $already_run )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   452
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   453
    $admin_pass = stg_decrypt_admin_pass(true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   454
    $key = stg_generate_aes_key(true);
229
b2f985e4cef3 Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents: 227
diff changeset
   455
    $aes = AESCrypt::singleton(AES_BITS, AES_BLOCKSIZE);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   456
    $key = $aes->hextostring($key);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   457
    $admin_pass = $aes->encrypt($admin_pass, $key, ENC_HEX);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   458
    $admin_user = mysql_real_escape_string($_POST['admin_user']);
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
   459
    $admin_user = str_replace('_', ' ', $admin_user);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   460
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   461
    $q = @mysql_query("UPDATE {$_POST['table_prefix']}users SET password='$admin_pass' WHERE username='$admin_user';");
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   462
    if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   463
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   464
      echo '<p><tt>MySQL return: ' . mysql_error() . '</tt></p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   465
      return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   466
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   467
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   468
    return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   469
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   470
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   471
  // OK, do the loop, baby!!!
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   472
  foreach($schema as $q)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   473
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   474
    $r = mysql_query($q, $conn);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   475
    if ( !$r )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   476
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   477
      echo '<p><tt>MySQL return: ' . mysql_error() . '</tt></p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   478
      return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   479
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   480
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   481
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   482
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   483
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   484
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   485
function stg_write_config()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   486
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   487
  $privkey = stg_generate_aes_key(true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   488
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   489
  switch($_POST['urlscheme'])
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   490
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   491
    case "ugly":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   492
    default:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   493
      $cp = scriptPath.'/index.php?title=';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   494
      break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   495
    case "short":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   496
      $cp = scriptPath.'/index.php/';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   497
      break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   498
    case "tiny":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   499
      $cp = scriptPath.'/';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   500
      break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   501
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   502
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   503
  if ( $_POST['urlscheme'] == 'tiny' )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   504
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   505
    $contents = '# Begin Enano rules
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   506
RewriteEngine on
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   507
RewriteCond %{REQUEST_FILENAME} !-d
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   508
RewriteCond %{REQUEST_FILENAME} !-f
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   509
RewriteRule ^(.+) '.scriptPath.'/index.php?title=$1 [L,QSA]
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   510
RewriteRule \.(php|html|gif|jpg|png|css|js)$ - [L]
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   511
# End Enano rules
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   512
';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   513
    if ( file_exists('./.htaccess') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   514
      $ht = fopen(ENANO_ROOT.'/.htaccess', 'a+');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   515
    else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   516
      $ht = fopen(ENANO_ROOT.'/.htaccess.new', 'w');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   517
    if ( !$ht )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   518
      return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   519
    fwrite($ht, $contents);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   520
    fclose($ht);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   521
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   522
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   523
  $config_file = '<?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   524
/* Enano auto-generated configuration file - editing not recommended! */
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   525
$dbhost   = \''.addslashes($_POST['db_host']).'\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   526
$dbname   = \''.addslashes($_POST['db_name']).'\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   527
$dbuser   = \''.addslashes($_POST['db_user']).'\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   528
$dbpasswd = \''.addslashes($_POST['db_pass']).'\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   529
if ( !defined(\'ENANO_CONSTANTS\') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   530
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   531
define(\'ENANO_CONSTANTS\', \'\');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   532
define(\'table_prefix\', \''.addslashes($_POST['table_prefix']).'\');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   533
define(\'scriptPath\', \''.scriptPath.'\');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   534
define(\'contentPath\', \''.$cp.'\');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   535
define(\'ENANO_INSTALLED\', \'true\');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   536
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   537
$crypto_key = \''.$privkey.'\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   538
?>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   539
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   540
  $cf_handle = fopen(ENANO_ROOT.'/config.new.php', 'w');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   541
  if ( !$cf_handle )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   542
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   543
  fwrite($cf_handle, $config_file);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   544
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   545
  fclose($cf_handle);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   546
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   547
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   548
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   549
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   550
function _stg_rename_config_revert()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   551
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   552
  if ( file_exists('./config.php') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   553
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   554
    @rename('./config.php', './config.new.php');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   555
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   556
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   557
  $handle = @fopen('./config.php.new', 'w');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   558
  if ( !$handle )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   559
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   560
  $contents = '<?php $cryptkey = \'' . _INSTRESUME_AES_KEYBACKUP . '\'; ?>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   561
  fwrite($handle, $contents);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   562
  fclose($handle);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   563
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   564
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   565
218
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   566
function stg_build_index()
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   567
{
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   568
  global $db, $session, $paths, $template, $plugins; // Common objects;
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   569
  if ( $paths->rebuild_search_index() )
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   570
    return true;
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   571
  return false;
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   572
}
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
   573
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   574
function stg_rename_config()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   575
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   576
  if ( !@rename('./config.new.php', './config.php') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   577
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   578
    echo '<p>Can\'t rename config.php</p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   579
    _stg_rename_config_revert();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   580
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   581
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   582
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   583
  if ( $_POST['urlscheme'] == 'tiny' && !file_exists('./.htaccess') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   584
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   585
    if ( !@rename('./.htaccess.new', './.htaccess') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   586
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   587
      echo '<p>Can\'t rename .htaccess</p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   588
      _stg_rename_config_revert();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   589
      return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   590
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   591
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   592
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   593
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   594
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   595
function stg_start_api_success()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   596
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   597
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   598
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   599
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   600
function stg_start_api_failure()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   601
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   602
  return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   603
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   604
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   605
function stg_init_logs()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   606
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   607
  global $db, $session, $paths, $template, $plugins; // Common objects
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   608
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   609
  $q = $db->sql_query('INSERT INTO ' . table_prefix . 'logs(log_type,action,time_id,date_string,author,page_text,edit_summary) VALUES(\'security\', \'install_enano\', ' . time() . ', \'' . date('d M Y h:i a') . '\', \'' . mysql_real_escape_string($_POST['admin_user']) . '\', \'' . mysql_real_escape_string(ENANO_VERSION) . '\', \'' . mysql_real_escape_string($_SERVER['REMOTE_ADDR']) . '\');');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   610
  if ( !$q )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   611
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   612
    echo '<p><tt>MySQL return: ' . mysql_error() . '</tt></p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   613
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   614
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   615
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   616
  if ( !$session->get_permissions('clear_logs') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   617
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   618
    echo '<p><tt>$session: denied clear_logs</tt></p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   619
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   620
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   621
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   622
  PageUtils::flushlogs('Main_Page', 'Article');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   623
  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   624
  return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   625
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   626
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   627
//die('Key size: ' . AES_BITS . '<br />Block size: ' . AES_BLOCKSIZE);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   628
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   629
if(!function_exists('wikiFormat'))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   630
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   631
  function wikiFormat($message, $filter_links = true)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   632
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   633
    $wiki = & Text_Wiki::singleton('Mediawiki');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   634
    $wiki->setRenderConf('Xhtml', 'code', 'css_filename', 'codefilename');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   635
    $wiki->setRenderConf('Xhtml', 'wikilink', 'view_url', contentPath);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   636
    $result = $wiki->transform($message, 'Xhtml');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   637
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   638
    // HTML fixes
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   639
    $result = preg_replace('#<tr>([\s]*?)<\/tr>#is', '', $result);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   640
    $result = preg_replace('#<p>([\s]*?)<\/p>#is', '', $result);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   641
    $result = preg_replace('#<br />([\s]*?)<table#is', '<table', $result);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   642
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   643
    return $result;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   644
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   645
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   646
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   647
global $failed, $warned;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   648
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   649
$failed = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   650
$warned = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   651
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   652
function not($var)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   653
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   654
  if($var)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   655
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   656
    return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   657
  } 
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   658
  else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   659
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   660
    return true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   661
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   662
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   663
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   664
function run_test($code, $desc, $extended_desc, $warn = false)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   665
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   666
  global $failed, $warned;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   667
  static $cv = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   668
  $cv = not($cv);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   669
  $val = eval($code);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   670
  if($val)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   671
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   672
    if($cv) $color='CCFFCC'; else $color='AAFFAA';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   673
    echo "<tr><td style='background-color: #$color; width: 500px;'>$desc</td><td style='padding-left: 10px;'><img alt='Test passed' src='images/good.gif' /></td></tr>";
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   674
  } elseif(!$val && $warn) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   675
    if($cv) $color='FFFFCC'; else $color='FFFFAA';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   676
    echo "<tr><td style='background-color: #$color; width: 500px;'>$desc<br /><b>$extended_desc</b></td><td style='padding-left: 10px;'><img alt='Test passed with warning' src='images/unknown.gif' /></td></tr>";
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   677
    $warned = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   678
  } else {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   679
    if($cv) $color='FFCCCC'; else $color='FFAAAA';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   680
    echo "<tr><td style='background-color: #$color; width: 500px;'>$desc<br /><b>$extended_desc</b></td><td style='padding-left: 10px;'><img alt='Test failed' src='images/bad.gif' /></td></tr>";
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   681
    $failed = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   682
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   683
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   684
function is_apache() { $r = strstr($_SERVER['SERVER_SOFTWARE'], 'Apache') ? true : false; return $r; }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   685
222
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   686
function show_license($fb = false)
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   687
{
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   688
  ?>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   689
  <div style="height: 500px; clip: rect(0px,auto,500px,auto); overflow: auto; padding: 10px; border: 1px dashed #456798; margin: 1em;">
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   690
   <h2>GNU General Public License</h2>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   691
   
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   692
   <h3>Declaration of license usage</h3>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   693
   <p>Enano is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.</p>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   694
   <p>This program is distributed in the hope that it will be useful, but <u>without any warranty</u>; without even the implied warranty of <u>merchantability</u> or <u>fitness for a particular purpose</u>. See the GNU General Public License (below) for more details.</p>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   695
   <p><b>By clicking the button below or otherwise continuing the installation, you indicate your acceptance of this license agreement.</b></p>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   696
   
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   697
   <h3>Human-readable version</h3>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   698
   <p>Enano is distributed under certain licensing terms that we believe make it of the greatest possible use to the public. The license we distribute it under, the GNU General Public License, provides certain terms and conditions that, rather than limit your use of Enano, allow you to get the most out of it. If you would like to read the full text, it can be found below. Here is a human-readable version that we think is a little easier to understand.</p>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   699
   
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   700
   <ul>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   701
     <li>You may to run Enano for any purpose.</li>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   702
     <li>You may study how Enano works and adapt it to your needs.</li>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   703
     <li>You may redistribute copies so you can help your neighbor.</li>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   704
     <li>You may improve Enano and release your improvements to the public, so that the whole community benefits.</li>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   705
   </ul>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   706
   
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   707
   <p>You may exercise the freedoms specified here provided that you comply with the express conditions of this license. The principal conditions are:</p>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   708
   
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   709
   <ul>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   710
     <li>You must conspicuously and appropriately publish on each copy distributed an appropriate copyright notice and disclaimer of warranty and keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of Enano a copy of the GNU General Public License along with Enano. Any translation of the GNU General Public License must be accompanied by the GNU General Public License.</li>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   711
     <li>If you modify your copy or copies of Enano or any portion of it, or develop a program based upon it, you may distribute the resulting work provided you do so under the GNU General Public License. Any translation of the GNU General Public License must be accompanied by the GNU General Public License.</li>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   712
     <li>If you copy or distribute Enano, you must accompany it with the complete corresponding machine-readable source code or with a written offer, valid for at least three years, to furnish the complete corresponding machine-readable source code.</li>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   713
   </ul>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   714
   
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   715
   <p><b>Disclaimer</b>: The above text is not a license. It is simply a handy reference for understanding the Legal Code (the full license) &ndash; it is a human-readable expression of some of its key terms. Think of it as the user-friendly interface to the Legal Code beneath. The above text itself has no legal value, and its contents do not appear in the actual license.<br /><span style="color: #CCC">Text copied from the <a href="http://creativecommons.org/licenses/GPL/2.0/">Creative Commons GPL Deed page</a></span></p>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   716
   <?php
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   717
   if ( defined('ENANO_BETA_VERSION') )
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   718
   {
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   719
     ?>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   720
     <h3>Notice for prerelease versions</h3>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   721
     <p>This version of Enano is designed only for testing and evaluation purposes. <b>It is not yet completely stable, and should not be used on production websites.</b> As with any Enano version, Dan Fuhry and the Enano team cannot be responsible for any damage, physical or otherwise, to any property as a result of the use of Enano. While security is a number one priority, sometimes things slip through.</p>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   722
     <?php
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   723
   }
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   724
   ?>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   725
   <h3>Lawyer-readable version</h3>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   726
   <?php echo wikiFormat(file_get_contents(ENANO_ROOT . '/GPL')); ?>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   727
   <?php
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   728
   global $template;
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   729
   if ( $fb )
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   730
   {
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   731
     echo '<p style="text-align: center;">Because I could never find the Create a Page button in PHP-Nuke.</p>';
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   732
     echo '<p>' . str_replace('http://enanocms.org/', 'http://www.2robots.com/2003/10/15/web-portals-suck/', $template->fading_button) . '</p>';
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   733
     echo '<p style="text-align: center;">It\'s not a portal, my friends.</p>';
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   734
   }
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   735
   ?>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   736
 </div>
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   737
 <?php
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   738
}
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   739
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   740
require_once('includes/template.php');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   741
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   742
if(!isset($_GET['mode'])) $_GET['mode'] = 'welcome';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   743
switch($_GET['mode'])
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   744
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   745
  case 'mysql_test':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   746
    error_reporting(0);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   747
    $dbhost     = rawurldecode($_POST['host']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   748
    $dbname     = rawurldecode($_POST['name']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   749
    $dbuser     = rawurldecode($_POST['user']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   750
    $dbpass     = rawurldecode($_POST['pass']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   751
    $dbrootuser = rawurldecode($_POST['root_user']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   752
    $dbrootpass = rawurldecode($_POST['root_pass']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   753
    if($dbrootuser != '')
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   754
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   755
      $conn = mysql_connect($dbhost, $dbrootuser, $dbrootpass);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   756
      if(!$conn)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   757
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   758
        $e = mysql_error();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   759
        if(strstr($e, "Lost connection"))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   760
          die('host'.$e);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   761
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   762
          die('root'.$e);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   763
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   764
      $rsp = 'good';
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
   765
      $q = mysql_query('USE `' . mysql_real_escape_string($dbname) . '`;', $conn);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   766
      if(!$q)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   767
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   768
        $e = mysql_error();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   769
        if(strstr($e, 'Unknown database'))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   770
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   771
          $rsp .= '_creating_db';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   772
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   773
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   774
      mysql_close($conn);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   775
      $conn = mysql_connect($dbhost, $dbuser, $dbpass);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   776
      if(!$conn)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   777
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   778
        $e = mysql_error();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   779
        if(strstr($e, "Lost connection"))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   780
          die('host'.$e);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   781
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   782
          $rsp .= '_creating_user';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   783
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   784
      mysql_close($conn);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   785
      die($rsp);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   786
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   787
    else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   788
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   789
      $conn = mysql_connect($dbhost, $dbuser, $dbpass);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   790
      if(!$conn)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   791
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   792
        $e = mysql_error();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   793
        if(strstr($e, "Lost connection"))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   794
          die('host'.$e);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   795
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   796
          die('auth'.$e);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   797
      }
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
   798
      $q = mysql_query('USE `' . mysql_real_escape_string($dbname) . '`;', $conn);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   799
      if(!$q)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   800
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   801
        $e = mysql_error();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   802
        if(strstr($e, 'Unknown database'))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   803
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   804
          die('name'.$e);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   805
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   806
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   807
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   808
          die('perm'.$e);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   809
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   810
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   811
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   812
    $v = mysql_get_server_info();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   813
    if(version_compare($v, '4.1.17', '<')) die('vers'.$v);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   814
    mysql_close($conn);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   815
    die('good');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   816
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   817
  case 'pophelp':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   818
    $topic = ( isset($_GET['topic']) ) ? $_GET['topic'] : 'invalid';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   819
    switch($topic)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   820
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   821
      case 'admin_embed_php':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   822
        $title = 'Allow administrators to embed PHP';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   823
        $content = '<p>This option allows you to control whether anything between the standard &lt;?php and ?&gt; tags will be treated as
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   824
                        PHP code by Enano. If this option is enabled, and members of the Administrators group use these tags, Enano will
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   825
                        execute that code when the page is loaded. There are obvious potential security implications here, which should
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   826
                        be carefully considered before enabling this option.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   827
                    <p>If you are the only administrator of this site, or if you have a high level of trust for those will be administering
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   828
                       the site with you, you should enable this to allow extreme customization of pages.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   829
                    <p>Leave this option off if you are at all concerned about security – if your account is compromised and PHP embedding
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   830
                       is enabled, an attacker can run arbitrary code on your server! Enabling this will also allow administrators to
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   831
                       embed Javascript and arbitrary HTML and CSS.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   832
                    <p>If you don\'t have experience coding in PHP, you can safely disable this option. You may change this at any time
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   833
                       using the ACL editor by selecting the Administrators group and This Entire Website under the scope selection. <!-- , or by
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   834
                       using the "embedded PHP kill switch" in the administration panel. --></p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   835
        break;
243
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   836
      case 'url_schemes':
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   837
        $title = 'URL schemes';
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   838
        $content = '<p>The URL scheme allows you to decide how the URLs to your Enano pages will look.</p>
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   839
                    <p>The first option (Standard URLs) works on any web server. You should select it if your server doesn\'t run Apache, or
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   840
                       if you are at all unsure of your server\'s configuration. With this scheme, URLs at your site will look like <tt>
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   841
                       http://yoursite.com/path-to-enano/index.php/Main_Page</tt>.</p>
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   842
                    <p>The second option, Small URLs, will be selected by default if Enano detects Apache. Small URLs are more friendly towards
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   843
                       search engines, but they don\'t work on very many non-Apache servers, or if PHP is set up through CGI on your server. Many
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   844
                       free and low-cost web hosts will configure PHP through CGI in order to keep your user account as the owner of any files that
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   845
                       Enano generates. With this scheme, URLs at your site will look like <tt>http://yoursite.com/path-to-enano/index.php/Main_Page</tt>.
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   846
                       </p>
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   847
                    <p>The last option, Tiny URLs, is the most friendly URL scheme for search engines, because your URLs won\'t have any special characters
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   848
                       at all in them. However, this only works if your webhost has configured Apache with support for mod_rewrite. Most of the time if your
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   849
                       host supports this you will see a listing for it in their feature matrix. None of the popular Linux distributions (such as Ubuntu,
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   850
                       Debian, Red Hat Enterprise Linux&trade;, Fedora, openSUSE&trade;, or CentOS) come with mod_rewrite enabled, so if you run a
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   851
                       home-brew server, you should consult your distribution\'s documentation for enabling mod_rewrite before selecting this option.
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   852
                       With this scheme, URLs at your site will look like <tt>http://yoursite.com/path-to-enano/Main_Page</tt>.</p>
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   853
                       </p>';
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
   854
        break;
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   855
      default:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   856
        $title = 'Invalid topic';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   857
        $content = 'Invalid help topic.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   858
        break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   859
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   860
    echo <<<EOF
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   861
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   862
<html>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   863
  <head>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   864
    <title>Enano installation quick help &bull; {$title}</title>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   865
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   866
    <style type="text/css">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   867
      body {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   868
        font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   869
        font-size: 9pt;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   870
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   871
      h2          { border-bottom: 1px solid #90B0D0; margin-bottom: 0; }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   872
      h3          { font-size: 11pt; font-weight: bold; }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   873
      li          { list-style: url(../images/bullet.gif); }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   874
      p           { margin: 1.0em; }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   875
      blockquote  { background-color: #F4F4F4; border: 1px dotted #406080; margin: 1em; padding: 10px; max-height: 250px; overflow: auto; }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   876
      a           { color: #7090B0; }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   877
      a:hover     { color: #90B0D0; }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   878
    </style>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   879
  </head>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   880
  <body>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   881
    <h2>{$title}</h2>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   882
    {$content}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   883
    <p style="text-align: right;">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   884
      <a href="#" onclick="window.close(); return false;">Close window</a>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   885
    </p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   886
  </body>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   887
</html>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   888
EOF;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   889
    exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   890
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   891
  default:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   892
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   893
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   894
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   895
$template = new template_nodb();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   896
$template->load_theme('oxygen', 'bleu', false);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   897
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   898
$modestrings = Array(
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   899
              'welcome' => 'Welcome',
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   900
              'license' => 'License Agreement',
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   901
              'sysreqs' => 'Server requirements',
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   902
              'database'=> 'Database information',
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   903
              'website' => 'Website configuration',
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   904
              'login'   => 'Administration login',
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   905
              'confirm' => 'Confirm installation',
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   906
              'install' => 'Database installation',
222
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   907
              'finish'  => 'Installation complete',
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   908
              '_hiddenstages' => '...', // all stages below this line are hidden
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   909
              'showlicense' => 'License Agreement'
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   910
            );
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   911
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   912
$sideinfo = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   913
$vars = $template->extract_vars('elements.tpl');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   914
$p = $template->makeParserText($vars['sidebar_button']);
222
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   915
$hidden = false;
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   916
foreach ( $modestrings as $id => $str )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   917
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   918
  if ( $_GET['mode'] == $id )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   919
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   920
    $flags = 'style="font-weight: bold; text-decoration: underline;"';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   921
    $this_page = $str;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   922
  }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   923
  else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   924
  {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   925
    $flags = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   926
  }
222
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   927
  if ( $id == '_hiddenstages' )
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   928
    $hidden = true;
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   929
  if ( !$hidden )
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   930
  {
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   931
    $p->assign_vars(Array(
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   932
        'HREF' => '#',
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   933
        'FLAGS' => $flags . ' onclick="return false;"',
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   934
        'TEXT' => $str
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   935
      ));
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   936
    $sideinfo .= $p->run();
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   937
  }
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   938
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   939
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   940
$template->init_vars();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   941
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   942
if(isset($_GET['mode']) && $_GET['mode'] == 'css')
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   943
{
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   944
  header('Content-type: text/css');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   945
  echo $template->get_css();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   946
  exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   947
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   948
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   949
$template->header();
222
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   950
if ( !isset($_GET['mode']) )
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   951
{
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   952
  $_GET['mode'] = 'welcome';
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   953
}
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   954
switch($_GET['mode'])
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   955
{ 
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   956
  default:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   957
  case 'welcome':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   958
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   959
    <div style="text-align: center; margin-top: 10px;">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   960
      <img alt="[ Enano CMS Project logo ]" src="images/enano-artwork/installer-greeting-blue.png" style="display: block; margin: 0 auto; padding-left: 100px;" />
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   961
      <h2>Welcome to Enano</h2>
256
f8356d9c3481 Rebrand as 1.0.3 (Dyrad)
Dan
parents: 243
diff changeset
   962
      <h3>Version 1.0.3 &ndash; stable<br />
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   963
      <span style="font-weight: normal;">also affectionately known as "coblynau" <tt>:)</tt></span></h3>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   964
      <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   965
      if ( file_exists('./_nightly.php') )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   966
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   967
        echo '<div class="warning-box" style="text-align: left; margin: 10px 0;"><b>You are about to install a NIGHTLY BUILD of Enano.</b><br />Nightly builds are NOT upgradeable and may contain serious flaws, security problems, or extraneous debugging information. Installing this version of Enano on a production site is NOT recommended.</div>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   968
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   969
      ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   970
      <form action="install.php?mode=license" method="post">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   971
        <input type="submit" value="Start installation" />
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   972
      </form>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   973
    </div>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   974
    <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   975
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   976
  case "license":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   977
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   978
    <h3>Welcome to the Enano installer.</h3>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   979
     <p>Thank you for choosing Enano as your CMS. You've selected the finest in design, the strongest in security, and the latest in Web 2.0 toys. Trust us, you'll like it.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   980
     <p>To get started, please read and accept the following license agreement. You've probably seen it before.</p>
222
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
   981
     <?php show_license(); ?>
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   982
     <div class="pagenav">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   983
       <form action="install.php?mode=sysreqs" method="post">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   984
         <table border="0">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   985
         <tr>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   986
         <td><input type="submit" value="I agree to the license terms" /></td><td><p><span style="font-weight: bold;">Before clicking continue:</span><br />&bull; Ensure that you agree with the terms of the license<br />&bull; Have your database host, name, username, and password available</p></td>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   987
         </tr>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   988
         </table>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   989
       </form>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   990
     </div>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   991
    <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   992
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   993
  case "sysreqs":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   994
    error_reporting(E_ALL);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   995
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   996
    <h3>Checking your server</h3>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   997
     <p>Enano has several requirements that must be met before it can be installed. If all is good then note any warnings and click Continue below.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   998
    <table border="0" cellspacing="0" cellpadding="0">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
   999
    <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1000
    run_test('return version_compare(\'4.3.0\', PHP_VERSION, \'<\');', 'PHP Version >=4.3.0', 'It seems that the version of PHP that your server is running is too old to support Enano properly. If this is your server, please upgrade to the most recent version of PHP, remembering to use the --with-mysql configure option if you compile it yourself. If this is not your server, please contact your webhost and ask them if it would be possible to upgrade PHP. If this is not possible, you will need to switch to a different webhost in order to use Enano.');
238
f948557af068 Add warning in installer for PHP < 5.2.0; hopefully fix validation of e-mail addresses with dashes
Dan
parents: 229
diff changeset
  1001
    run_test('return version_compare(\'5.2.0\', PHP_VERSION, \'<\');', 'PHP 5.2.0 or later', 'Your server does not have support for PHP 5.2.0. While you may continue installing Enano, please be warned that as of December 31, 2007, all support for Enano on PHP 4 servers is discontinued. If you have at least PHP 5.0.0, support will still be available, but there are many security problems in PHP versions under 5.2.0 that Enano cannot effectively prevent.', true);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1002
    run_test('return function_exists(\'mysql_connect\');', 'MySQL extension for PHP', 'It seems that your PHP installation does not have the MySQL extension enabled. If this is your own server, you may need to just enable the "libmysql.so" extension in php.ini. If you do not have the MySQL extension installed, you will need to either use your distribution\'s package manager to install it, or you will have to compile PHP from source. If you compile PHP from source, please remember to use the "--with-mysql" configure option, and you will have to have the MySQL development files installed (they usually are). If this is not your server, please contact your hosting company and ask them to install the PHP MySQL extension.');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1003
    run_test('return @ini_get(\'file_uploads\');', 'File upload support', 'It seems that your server does not support uploading files. Enano *requires* this functionality in order to work properly. Please ask your server administrator to set the "file_uploads" option in php.ini to "On".');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1004
    run_test('return is_apache();', 'Apache HTTP Server', 'Apparently your server is running a web server other than Apache. Enano will work nontheless, but there are some known bugs with non-Apache servers, and the "fancy" URLs will not work properly. The "Standard URLs" option will be set on the website configuration page, only change it if you are absolutely certain that your server is running Apache.', true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1005
    //run_test('return function_exists(\'finfo_file\');', 'Fileinfo PECL extension', 'The MIME magic PHP extension is used to determine the type of a file by looking for a certain "magic" string of characters inside it. This functionality is used by Enano to more effectively prevent malicious file uploads. The MIME magic option will be disabled by default.', true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1006
    run_test('return is_writable(ENANO_ROOT.\'/config.new.php\');', 'Configuration file writable', 'It looks like the configuration file, config.new.php, is not writable. Enano needs to be able to write to this file in order to install.<br /><br /><b>If you are installing Enano on a SourceForge web site:</b><br />SourceForge mounts the web partitions read-only now, so you will need to use the project shell service to symlink config.php to a file in the /tmp/persistent directory.');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1007
    run_test('return file_exists(\'/usr/bin/convert\');', 'ImageMagick support', 'Enano uses ImageMagick to scale images into thumbnails. Because ImageMagick was not found on your server, Enano will use the width= and height= attributes on the &lt;img&gt; tag to scale images. This can cause somewhat of a performance increase, but bandwidth usage will be higher, especially if you use high-resolution images on your site.<br /><br />If you are sure that you have ImageMagick, you can set the location of the "convert" program using the administration panel after installation is complete.', true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1008
    run_test('return is_writable(ENANO_ROOT.\'/cache/\');', 'Cache directory writable', 'Apparently the cache/ directory is not writable. Enano will still work, but you will not be able to cache thumbnails, meaning the server will need to re-render them each time they are requested. In some cases, this can cause a significant slowdown.', true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1009
    run_test('return is_writable(ENANO_ROOT.\'/files/\');', 'File uploads directory writable', 'It seems that the directory where uploaded files are stored (' . ENANO_ROOT . '/files) cannot be written by the server. Enano will still function, but file uploads will not function, and will be disabled by default.', true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1010
    echo '</table>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1011
    if(!$failed)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1012
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1013
      ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1014
      
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1015
      <div class="pagenav">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1016
      <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1017
      if($warned) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1018
        echo '<table border="0" cellspacing="0" cellpadding="0">';
238
f948557af068 Add warning in installer for PHP < 5.2.0; hopefully fix validation of e-mail addresses with dashes
Dan
parents: 229
diff changeset
  1019
        run_test('return false;', 'Some of the features of Enano have been turned off to accommodate your server.', 'Enano has detected that some of the features or configuration settings on your server are not optimal for the best behavior and/or performance for Enano. As a result, Enano has disabled these features as a precaution to prevent errors and potential security issues.', true);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1020
        echo '</table>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1021
      } else {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1022
        echo '<table border="0" cellspacing="0" cellpadding="0">';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1023
        run_test('return true;', '<b>Your server meets all the requirements for running Enano.</b><br />Click the button below to continue the installation.', 'You should never see this text. Congratulations for being an Enano hacker!');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1024
        echo '</table>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1025
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1026
      ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1027
       <form action="install.php?mode=database" method="post">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1028
         <table border="0">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1029
         <tr>
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1030
         <td><input type="submit" value="Continue" /></td><td><p><span style="font-weight: bold;">Before clicking continue:</span><br />&bull; Ensure that you are satisfied with any scalebacks that may have been made to accomodate your server configuration<br />&bull; Have your database host, name, username, and password available</p></td>
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1031
         </tr>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1032
         </table>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1033
       </form>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1034
     </div>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1035
     <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1036
    } else {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1037
      if($failed) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1038
        echo '<div class="pagenav"><table border="0" cellspacing="0" cellpadding="0">';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1039
        run_test('return false;', 'Your server does not meet the requirements for Enano to run.', 'As a precaution, Enano will not install until the above requirements have been met. Contact your server administrator or hosting company and convince them to upgrade. Good luck.');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1040
        echo '</table></div>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1041
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1042
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1043
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1044
    <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1045
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1046
  case "database":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1047
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1048
    <script type="text/javascript">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1049
      function ajaxGet(uri, f) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1050
        if (window.XMLHttpRequest) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1051
          ajax = new XMLHttpRequest();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1052
        } else {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1053
          if (window.ActiveXObject) {           
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1054
            ajax = new ActiveXObject("Microsoft.XMLHTTP");
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1055
          } else {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1056
            alert('Enano client-side runtime error: No AJAX support, unable to continue');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1057
            return;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1058
          }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1059
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1060
        ajax.onreadystatechange = f;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1061
        ajax.open('GET', uri, true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1062
        ajax.send(null);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1063
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1064
      
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1065
      function ajaxPost(uri, parms, f) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1066
        if (window.XMLHttpRequest) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1067
          ajax = new XMLHttpRequest();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1068
        } else {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1069
          if (window.ActiveXObject) {           
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1070
            ajax = new ActiveXObject("Microsoft.XMLHTTP");
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1071
          } else {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1072
            alert('Enano client-side runtime error: No AJAX support, unable to continue');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1073
            return;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1074
          }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1075
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1076
        ajax.onreadystatechange = f;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1077
        ajax.open('POST', uri, true);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1078
        ajax.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1079
        ajax.setRequestHeader("Content-length", parms.length);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1080
        ajax.setRequestHeader("Connection", "close");
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1081
        ajax.send(parms);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1082
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1083
      function ajaxTestConnection()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1084
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1085
        v = verify();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1086
        if(!v)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1087
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1088
          alert('One or more of the form fields is incorrect. Please correct any information in the form that has an "X" next to it.');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1089
          return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1090
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1091
        var frm = document.forms.dbinfo;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1092
        db_host      = escape(frm.db_host.value.replace('+', '%2B'));
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1093
        db_name      = escape(frm.db_name.value.replace('+', '%2B'));
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1094
        db_user      = escape(frm.db_user.value.replace('+', '%2B'));
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1095
        db_pass      = escape(frm.db_pass.value.replace('+', '%2B'));
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1096
        db_root_user = escape(frm.db_root_user.value.replace('+', '%2B'));
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1097
        db_root_pass = escape(frm.db_root_pass.value.replace('+', '%2B'));
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1098
        
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1099
        parms = 'host='+db_host+'&name='+db_name+'&user='+db_user+'&pass='+db_pass+'&root_user='+db_root_user+'&root_pass='+db_root_pass;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1100
        ajaxPost('<?php echo scriptPath; ?>/install.php?mode=mysql_test', parms, function() {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1101
            if(ajax.readyState==4)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1102
            {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1103
              s = ajax.responseText.substr(0, 4);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1104
              t = ajax.responseText.substr(4, ajax.responseText.length);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1105
              if(s.substr(0, 4)=='good')
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1106
              {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1107
                document.getElementById('s_db_host').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1108
                document.getElementById('s_db_name').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1109
                document.getElementById('s_db_auth').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1110
                document.getElementById('s_db_root').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1111
                if(t.match(/_creating_db/)) document.getElementById('e_db_name').innerHTML = '<b>Warning:<\/b> The database you specified does not exist. It will be created during installation.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1112
                if(t.match(/_creating_user/)) document.getElementById('e_db_auth').innerHTML = '<b>Warning:<\/b> The specified regular user does not exist or the password is incorrect. The user will be created during installation. If the user already exists, the password will be reset.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1113
                document.getElementById('s_mysql_version').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1114
                document.getElementById('e_mysql_version').innerHTML = 'Your version of MySQL meets Enano requirements.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1115
              }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1116
              else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1117
              {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1118
                switch(s)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1119
                {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1120
                case 'host':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1121
                  document.getElementById('s_db_host').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1122
                  document.getElementById('s_db_name').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1123
                  document.getElementById('s_db_auth').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1124
                  document.getElementById('s_db_root').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1125
                  document.getElementById('e_db_host').innerHTML = '<b>Error:<\/b> The database server "'+document.forms.dbinfo.db_host.value+'" couldn\'t be contacted.<br \/>'+t;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1126
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1127
                  break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1128
                case 'auth':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1129
                  document.getElementById('s_db_host').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1130
                  document.getElementById('s_db_name').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1131
                  document.getElementById('s_db_auth').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1132
                  document.getElementById('s_db_root').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1133
                  document.getElementById('e_db_auth').innerHTML = '<b>Error:<\/b> Access to MySQL under the specified credentials was denied.<br \/>'+t;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1134
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1135
                  break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1136
                case 'perm':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1137
                  document.getElementById('s_db_host').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1138
                  document.getElementById('s_db_name').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1139
                  document.getElementById('s_db_auth').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1140
                  document.getElementById('s_db_root').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1141
                  document.getElementById('e_db_name').innerHTML = '<b>Error:<\/b> Access to the specified database using those login credentials was denied.<br \/>'+t;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1142
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1143
                  break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1144
                case 'name':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1145
                  document.getElementById('s_db_host').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1146
                  document.getElementById('s_db_name').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1147
                  document.getElementById('s_db_auth').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1148
                  document.getElementById('s_db_root').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1149
                  document.getElementById('e_db_name').innerHTML = '<b>Error:<\/b> The specified database does not exist<br \/>'+t;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1150
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1151
                  break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1152
                case 'root':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1153
                  document.getElementById('s_db_host').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1154
                  document.getElementById('s_db_name').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1155
                  document.getElementById('s_db_auth').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1156
                  document.getElementById('s_db_root').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1157
                  document.getElementById('e_db_root').innerHTML = '<b>Error:<\/b> Access to MySQL under the specified credentials was denied.<br \/>'+t;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1158
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1159
                  break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1160
                case 'vers':
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1161
                  document.getElementById('s_db_host').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1162
                  document.getElementById('s_db_name').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1163
                  document.getElementById('s_db_auth').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1164
                  document.getElementById('s_db_root').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1165
                  if(t.match(/_creating_db/)) document.getElementById('e_db_name').innerHTML = '<b>Warning:<\/b> The database you specified does not exist. It will be created during installation.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1166
                  if(t.match(/_creating_user/)) document.getElementById('e_db_auth').innerHTML = '<b>Warning:<\/b> The specified regular user does not exist or the password is incorrect. The user will be created during installation. If the user already exists, the password will be reset.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1167
                  
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1168
                  document.getElementById('e_mysql_version').innerHTML = '<b>Error:<\/b> Your version of MySQL ('+t+') is older than 4.1.17. Enano will still work, but there is a known bug with the comment system and MySQL 4.1.11 that involves some comments not being displayed, due to an issue with the PHP function mysql_fetch_row().';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1169
                  document.getElementById('s_mysql_version').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1170
                default:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1171
                  alert(t);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1172
                  break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1173
                }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1174
              }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1175
            }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1176
          });
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1177
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1178
      function verify()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1179
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1180
        document.getElementById('e_db_host').innerHTML = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1181
        document.getElementById('e_db_auth').innerHTML = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1182
        document.getElementById('e_db_name').innerHTML = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1183
        document.getElementById('e_db_root').innerHTML = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1184
        var frm = document.forms.dbinfo;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1185
        ret = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1186
        if(frm.db_host.value != '')
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1187
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1188
          document.getElementById('s_db_host').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1189
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1190
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1191
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1192
          document.getElementById('s_db_host').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1193
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1194
        }
211
596945fa6e56 Javascript validation for install DB info form didn't allow dashes
Dan
parents: 207
diff changeset
  1195
        if(frm.db_name.value.match(/^([a-z0-9_-]+)$/g))
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1196
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1197
          document.getElementById('s_db_name').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1198
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1199
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1200
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1201
          document.getElementById('s_db_name').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1202
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1203
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1204
        if(frm.db_user.value != '')
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1205
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1206
          document.getElementById('s_db_auth').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1207
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1208
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1209
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1210
          document.getElementById('s_db_auth').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1211
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1212
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1213
        if(frm.table_prefix.value.match(/^([a-z0-9_]*)$/g))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1214
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1215
          document.getElementById('s_table_prefix').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1216
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1217
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1218
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1219
          document.getElementById('s_table_prefix').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1220
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1221
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1222
        if(frm.db_root_user.value == '')
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1223
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1224
          document.getElementById('s_db_root').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1225
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1226
        else if(frm.db_root_user.value != '' && frm.db_root_pass.value == '')
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1227
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1228
          document.getElementById('s_db_root').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1229
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1230
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1231
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1232
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1233
          document.getElementById('s_db_root').src='images/unknown.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1234
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1235
        if(ret) frm._cont.disabled = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1236
        else    frm._cont.disabled = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1237
        return ret;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1238
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1239
      window.onload = verify;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1240
    </script>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1241
    <p>Now we need some information that will allow Enano to contact your database server. Enano uses MySQL as a data storage backend,
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1242
       and we need to have access to a MySQL server in order to continue.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1243
    <p>If you do not have access to a MySQL server, and you are using your own server, you can download MySQL for free from
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1244
       <a href="http://www.mysql.com/">MySQL.com</a>. <b>Please note that, like Enano, MySQL is licensed under the GNU GPL.</b>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1245
       If you need to modify MySQL and then distribute your modifications, you must either distribute them under the terms of the GPL
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1246
       or purchase a proprietary license.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1247
    <?php
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1248
    if ( @file_exists('/etc/enano-is-virt-appliance') )
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1249
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1250
      echo '<p><b>MySQL login information for this virtual appliance:</b><br /><br />Database hostname: localhost<br />Database login: username "enano", password: "clurichaun" (without quotes)<br />Database name: enano_www1</p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1251
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1252
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1253
    <form name="dbinfo" action="install.php?mode=website" method="post">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1254
      <table border="0">
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1255
        <tr><td colspan="3" style="text-align: center"><h3>Database information</h3></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1256
        <tr><td><b>Database hostname</b><br />This is the hostname (or sometimes the IP address) of your MySQL server. In many cases, this is "localhost".<br /><span style="color: #993300" id="e_db_host"></span></td><td><input onkeyup="verify();" name="db_host" size="30" type="text" /></td><td><img id="s_db_host" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1257
        <tr><td><b>Database name</b><br />The name of the actual database. If you don't already have a database, you can create one here, if you have the username and password of a MySQL user with administrative rights.<br /><span style="color: #993300" id="e_db_name"></span></td><td><input onkeyup="verify();" name="db_name" size="30" type="text" /></td><td><img id="s_db_name" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1258
        <tr><td rowspan="2"><b>Database login</b><br />These fields should be the username and password of a user with "select", "insert", "update", "delete", "create table", and "replace" privileges for your database.<br /><span style="color: #993300" id="e_db_auth"></span></td><td><input onkeyup="verify();" name="db_user" size="30" type="text" /></td><td rowspan="2"><img id="s_db_auth" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1259
        <tr><td><input name="db_pass" size="30" type="password" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1260
        <tr><td colspan="3" style="text-align: center"><h3>Optional information</h3></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1261
        <tr><td><b>Table prefix</b><br />The value that you enter here will be added to the beginning of the name of each Enano table. You may use lowercase letters (a-z), numbers (0-9), and underscores (_).</td><td><input onkeyup="verify();" name="table_prefix" size="30" type="text" /></td><td><img id="s_table_prefix" alt="Good/bad icon" src="images/good.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1262
        <tr><td rowspan="2"><b>Database administrative login</b><br />If the MySQL database or username that you entered above does not exist yet, you can create them here, assuming that you have the login information for an administrative user (such as root). Leave these fields blank unless you need to use them.<br /><span style="color: #993300" id="e_db_root"></span></td><td><input onkeyup="verify();" name="db_root_user" size="30" type="text" /></td><td rowspan="2"><img id="s_db_root" alt="Good/bad icon" src="images/good.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1263
        <tr><td><input onkeyup="verify();" name="db_root_pass" size="30" type="password" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1264
        <tr><td><b>MySQL version</b></td><td id="e_mysql_version">MySQL version information will be checked when you click "Test Connection".</td><td><img id="s_mysql_version" alt="Good/bad icon" src="images/unknown.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1265
        <tr><td><b>Delete existing tables?</b><br />If this option is checked, all the tables that will be used by Enano will be dropped (deleted) before the schema is executed. Do NOT use this option unless specifically instructed to.</td><td><input type="checkbox" name="drop_tables" id="dtcheck" />  <label for="dtcheck">Drop existing tables</label></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1266
        <tr><td colspan="3" style="text-align: center"><input type="button" value="Test connection" onclick="ajaxTestConnection();" /></td></tr>
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1267
      </table>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1268
      <div class="pagenav">
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1269
       <table border="0">
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1270
       <tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1271
       <td><input type="submit" value="Continue" onclick="return verify();" name="_cont" /></td><td><p><span style="font-weight: bold;">Before clicking continue:</span><br />&bull; Check your MySQL connection using the "Test Connection" button.<br />&bull; Be aware that your database information will be transmitted unencrypted several times.</p></td>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1272
       </tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1273
       </table>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1274
     </div>
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1275
    </form>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1276
    <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1277
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1278
  case "website":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1279
    if(!isset($_POST['_cont'])) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1280
      echo 'No POST data signature found. Please <a href="install.php?mode=sysreqs">restart the installation</a>.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1281
      $template->footer();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1282
      exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1283
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1284
    unset($_POST['_cont']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1285
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1286
    <script type="text/javascript">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1287
      function verify()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1288
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1289
        var frm = document.forms.siteinfo;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1290
        ret = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1291
        if(frm.sitename.value.match(/^(.+)$/g) && frm.sitename.value != 'Enano')
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1292
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1293
          document.getElementById('s_name').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1294
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1295
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1296
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1297
          document.getElementById('s_name').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1298
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1299
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1300
        if(frm.sitedesc.value.match(/^(.+)$/g))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1301
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1302
          document.getElementById('s_desc').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1303
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1304
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1305
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1306
          document.getElementById('s_desc').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1307
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1308
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1309
        if(frm.copyright.value.match(/^(.+)$/g))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1310
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1311
          document.getElementById('s_copyright').src='images/good.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1312
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1313
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1314
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1315
          document.getElementById('s_copyright').src='images/bad.gif';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1316
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1317
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1318
        if(ret) frm._cont.disabled = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1319
        else    frm._cont.disabled = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1320
        return ret;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1321
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1322
      window.onload = verify;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1323
    </script>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1324
    <form name="siteinfo" action="install.php?mode=login" method="post">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1325
      <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1326
        $k = array_keys($_POST);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1327
        for($i=0;$i<sizeof($_POST);$i++) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1328
          echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1329
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1330
      ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1331
      <p>The next step is to enter some information about your website. You can always change this information later, using the administration panel.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1332
      <table border="0">
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1333
        <tr><td><b>Website name</b><br />The display name of your website. Allowed characters are uppercase and lowercase letters, numerals, and spaces. This must not be blank or "Enano".</td><td><input onkeyup="verify();" name="sitename" type="text" size="30" /></td><td><img id="s_name" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1334
        <tr><td><b>Website description</b><br />This text will be shown below the name of your website.</td><td><input onkeyup="verify();" name="sitedesc" type="text" size="30" /></td><td><img id="s_desc" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1335
        <tr><td><b>Copyright info</b><br />This should be a one-line legal notice that will appear at the bottom of all your pages.</td><td><input onkeyup="verify();" name="copyright" type="text" size="30" /></td><td><img id="s_copyright" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1336
        <tr><td><b>Wiki mode</b><br />This feature allows people to create and edit pages on your site. Enano keeps a history of all page modifications, and you can protect pages to prevent editing.</td><td><input name="wiki_mode" type="checkbox" id="wmcheck" />  <label for="wmcheck">Yes, make my website a wiki.</label></td><td></td></tr>
243
c9e192a059c1 Add installer pop-help topic for URL scheme, in response to http://forum.enanocms.org/viewtopic.php?f=5&t=19
Dan
parents: 238
diff changeset
  1337
        <tr><td><b>URL scheme</b><br />Choose how the page URLs will look. Depending on your server configuration, you may need to select the first option. If you don't know, select the first option, and you can always change it later.</td><td colspan="2"><input type="radio" <?php if(!is_apache()) echo 'checked="checked" '; ?>name="urlscheme" value="ugly" id="ugly">  <label for="ugly">Standard URLs - compatible with any web server (www.example.com/index.php?title=Page_name)</label><br /><input type="radio" <?php if(is_apache()) echo 'checked="checked" '; ?>name="urlscheme" value="short" id="short">  <label for="short">Short URLs - requires Apache with a PHP module (www.example.com/index.php/Page_name)</label><br /><input type="radio" name="urlscheme" value="tiny" id="petite">  <label for="petite">Tiny URLs - requires Apache on Linux/Unix/BSD with PHP module and mod_rewrite enabled (www.example.com/Page_name)</label><br /><small><a href="install.php?mode=pophelp&amp;topic=url_schemes" onclick="window.open(this.href, 'pophelpwin', 'width=550,height=400,status=no,toolbars=no,toolbar=no,address=no,scroll=yes'); return false;">Which URL scheme should I choose?</a></small></td></tr>
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1338
      </table>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1339
      <div class="pagenav">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1340
       <table border="0">
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1341
       <tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1342
       <td><input type="submit" value="Continue" onclick="return verify();" name="_cont" /></td><td><p><span style="font-weight: bold;">Before clicking continue:</span><br />&bull; Verify that your site information is correct. Again, all of the above settings can be changed from the administration panel.</p></td>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1343
       </tr>
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1344
       </table>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1345
     </div>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1346
    </form>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1347
    <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1348
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1349
  case "login":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1350
    if(!isset($_POST['_cont'])) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1351
      echo 'No POST data signature found. Please <a href="install.php?mode=sysreqs">restart the installation</a>.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1352
      $template->footer();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1353
      exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1354
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1355
    unset($_POST['_cont']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1356
    require('config.new.php');
229
b2f985e4cef3 Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents: 227
diff changeset
  1357
    $aes = AESCrypt::singleton(AES_BITS, AES_BLOCKSIZE);
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1358
    if ( isset($crypto_key) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1359
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1360
      $cryptkey = $crypto_key;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1361
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1362
    if(!isset($cryptkey) || ( isset($cryptkey) && strlen($cryptkey) != AES_BITS / 4) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1363
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1364
      $cryptkey = $aes->gen_readymade_key();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1365
      $handle = @fopen(ENANO_ROOT.'/config.new.php', 'w');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1366
      if(!$handle)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1367
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1368
        echo '<p>ERROR: Cannot open config.php for writing - exiting!</p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1369
        $template->footer();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1370
        exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1371
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1372
      fwrite($handle, '<?php $cryptkey = \''.$cryptkey.'\'; ?>');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1373
      fclose($handle);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1374
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1375
    // Sorry for the ugly hack, but this f***s up jEdit badly.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1376
    echo '
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1377
    <script type="text/javascript">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1378
      function verify()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1379
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1380
        var frm = document.forms.login;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1381
        ret = true;
227
0f039028f7a5 Made the username validation regexp in install less picky since it was blacklisting two of the letters in my name. >.<
Dan
parents: 225
diff changeset
  1382
        if ( frm.admin_user.value.match(/^([^<>&\?\'"%\/]+)$/) && !frm.admin_user.value.match(/^(?:(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])\\.){3}(?:\\d{1,2}|1\\d\\d|2[0-4]\\d|25[0-5])$/) && frm.admin_user.value.toLowerCase() != \'anonymous\' )
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1383
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1384
          document.getElementById(\'s_user\').src = \'images/good.gif\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1385
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1386
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1387
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1388
          document.getElementById(\'s_user\').src = \'images/bad.gif\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1389
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1390
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1391
        if(frm.admin_pass.value.length >= 6 && frm.admin_pass.value == frm.admin_pass_confirm.value)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1392
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1393
          document.getElementById(\'s_password\').src = \'images/good.gif\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1394
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1395
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1396
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1397
          document.getElementById(\'s_password\').src = \'images/bad.gif\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1398
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1399
        }
238
f948557af068 Add warning in installer for PHP < 5.2.0; hopefully fix validation of e-mail addresses with dashes
Dan
parents: 229
diff changeset
  1400
        if(frm.admin_email.value.match(/^(?:[\\w\\d_-]+\\.?)+@(?:(?:[\\w\\d-]\\-?)+\\.)+\\w{2,4}$/))
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1401
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1402
          document.getElementById(\'s_email\').src = \'images/good.gif\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1403
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1404
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1405
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1406
          document.getElementById(\'s_email\').src = \'images/bad.gif\';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1407
          ret = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1408
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1409
        if(ret) frm._cont.disabled = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1410
        else    frm._cont.disabled = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1411
        return ret;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1412
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1413
      window.onload = verify;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1414
      
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1415
      function cryptdata() 
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1416
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1417
        if(!verify()) return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1418
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1419
    </script>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1420
    ';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1421
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1422
    <form name="login" action="install.php?mode=confirm" method="post" onsubmit="runEncryption();">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1423
      <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1424
        $k = array_keys($_POST);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1425
        for($i=0;$i<sizeof($_POST);$i++) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1426
          echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1427
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1428
      ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1429
      <p>Next, enter your desired username and password. The account you create here will be used to administer your site.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1430
      <table border="0">
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1431
        <tr><td><b>Administration username</b><br /><small>The administration username you will use to log into your site.<br />This cannot be "anonymous" or in the form of an IP address.</small></td><td><input onkeyup="verify();" name="admin_user" type="text" size="30" /></td><td><img id="s_user" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1432
        <tr><td>Administration password:</td><td><input onkeyup="verify();" name="admin_pass" type="password" size="30" /></td><td rowspan="2"><img id="s_password" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1433
        <tr><td>Enter it again to confirm:</td><td><input onkeyup="verify();" name="admin_pass_confirm" type="password" size="30" /></td></tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1434
        <tr><td>Your e-mail address:</td><td><input onkeyup="verify();" name="admin_email" type="text" size="30" /></td><td><img id="s_email" alt="Good/bad icon" src="images/bad.gif" /></td></tr>
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1435
        <tr>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1436
          <td>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1437
            Allow administrators to embed PHP code into pages:<br />
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1438
            <small><span style="color: #D84308">Do not under any circumstances enable this option without reading these
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1439
                   <a href="install.php?mode=pophelp&amp;topic=admin_embed_php"
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1440
                      onclick="window.open(this.href, 'pophelpwin', 'width=550,height=400,status=no,toolbars=no,toolbar=no,address=no,scroll=yes'); return false;"
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1441
                      style="color: #D84308; text-decoration: underline;">important security implications</a>.
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1442
            </span></small>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1443
          </td>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1444
          <td>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1445
            <label><input type="radio" name="admin_embed_php" value="2" checked="checked" /> Disabled</label>&nbsp;&nbsp;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1446
            <label><input type="radio" name="admin_embed_php" value="4" /> Enabled</label>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1447
          </td>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1448
          <td></td>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1449
        </tr>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1450
        <tr><td colspan="3">If your browser supports Javascript, the password you enter here will be encrypted with AES before it is sent to the server.</td></tr>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1451
      </table>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1452
      <div class="pagenav">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1453
       <table border="0">
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1454
       <tr>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1455
       <td><input type="submit" value="Continue" onclick="return cryptdata();" name="_cont" /></td><td><p><span style="font-weight: bold;">Before clicking continue:</span><br />&bull; Remember the username and password you enter here! You will not be able to administer your site without the information you enter on this page.</p></td>
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1456
       </tr>
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1457
       </table>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1458
      </div>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1459
      <div id="cryptdebug"></div>
206
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1460
     <input type="hidden" name="use_crypt" value="no" />
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1461
     <input type="hidden" name="crypt_key" value="<?php echo $cryptkey; ?>" />
e7bbbb92385b Merge in installer fixes from 204 (ba28d43a6b86)
Dan
parents: 205 204
diff changeset
  1462
     <input type="hidden" name="crypt_data" value="" />
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1463
    </form>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1464
    <script type="text/javascript">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1465
    // <![CDATA[
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1466
      var frm = document.forms.login;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1467
      frm.admin_user.focus();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1468
      function runEncryption()
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1469
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1470
        str = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1471
        for(i=0;i<keySizeInBits/4;i++) str+='0';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1472
        var key = hexToByteArray(str);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1473
        var pt = hexToByteArray(str);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1474
        var ct = rijndaelEncrypt(pt, key, "ECB");
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1475
        var ect = byteArrayToHex(ct);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1476
        switch(keySizeInBits)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1477
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1478
          case 128:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1479
            v = '66e94bd4ef8a2c3b884cfa59ca342b2e';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1480
            break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1481
          case 192:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1482
            v = 'aae06992acbf52a3e8f4a96ec9300bd7aae06992acbf52a3e8f4a96ec9300bd7';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1483
            break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1484
          case 256:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1485
            v = 'dc95c078a2408989ad48a21492842087dc95c078a2408989ad48a21492842087';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1486
            break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1487
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1488
        var testpassed = ( ect == v && md5_vm_test() );
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1489
        var frm = document.forms.login;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1490
        if(testpassed)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1491
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1492
          // alert('encryption self-test passed');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1493
          frm.use_crypt.value = 'yes';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1494
          var cryptkey = frm.crypt_key.value;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1495
          frm.crypt_key.value = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1496
          if(cryptkey != byteArrayToHex(hexToByteArray(cryptkey)))
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1497
          {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1498
            alert('Byte array conversion SUCKS');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1499
            testpassed = false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1500
          }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1501
          cryptkey = hexToByteArray(cryptkey);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1502
          if(!cryptkey || ( ( typeof cryptkey == 'string' || typeof cryptkey == 'object' ) ) && cryptkey.length != keySizeInBits / 8 )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1503
          {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1504
            frm._cont.disabled = true;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1505
            len = ( typeof cryptkey == 'string' || typeof cryptkey == 'object' ) ? '\nLen: '+cryptkey.length : '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1506
            alert('The key is messed up\nType: '+typeof(cryptkey)+len);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1507
          }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1508
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1509
        else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1510
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1511
          // alert('encryption self-test FAILED');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1512
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1513
        if(testpassed)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1514
        {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1515
          pass = frm.admin_pass.value;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1516
          pass = stringToByteArray(pass);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1517
          cryptstring = rijndaelEncrypt(pass, cryptkey, 'ECB');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1518
          //decrypted = rijndaelDecrypt(cryptstring, cryptkey, 'ECB');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1519
          //decrypted = byteArrayToString(decrypted);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1520
          //return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1521
          if(!cryptstring)
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1522
          {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1523
            return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1524
          }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1525
          cryptstring = byteArrayToHex(cryptstring);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1526
          // document.getElementById('cryptdebug').innerHTML = '<pre>Data: '+cryptstring+'<br />Key:  '+byteArrayToHex(cryptkey)+'</pre>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1527
          frm.crypt_data.value = cryptstring;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1528
          frm.admin_pass.value = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1529
          frm.admin_pass_confirm.value = '';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1530
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1531
        return false;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1532
      }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1533
      // ]]>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1534
    </script>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1535
    <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1536
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1537
  case "confirm":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1538
    if(!isset($_POST['_cont'])) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1539
      echo 'No POST data signature found. Please <a href="install.php?mode=sysreqs">restart the installation</a>.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1540
      $template->footer();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1541
      exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1542
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1543
    unset($_POST['_cont']);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1544
    ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1545
    <form name="confirm" action="install.php?mode=install" method="post">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1546
      <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1547
        $k = array_keys($_POST);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1548
        for($i=0;$i<sizeof($_POST);$i++) {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1549
          echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1550
        }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1551
      ?>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1552
      <h3>Enano is ready to install.</h3>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1553
       <p>The wizard has finished collecting information and is ready to install the database schema. Please review the information below,
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1554
          and then click the button below to install the database.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1555
      <ul>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1556
        <li>Database hostname: <?php echo $_POST['db_host']; ?></li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1557
        <li>Database name: <?php echo $_POST['db_name']; ?></li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1558
        <li>Database user: <?php echo $_POST['db_user']; ?></li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1559
        <li>Database password: &lt;hidden&gt;</li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1560
        <li>Site name: <?php echo $_POST['sitename']; ?></li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1561
        <li>Site description: <?php echo $_POST['sitedesc']; ?></li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1562
        <li>Administration username: <?php echo $_POST['admin_user']; ?></li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1563
        <li>Cipher strength: <?php echo (string)AES_BITS; ?>-bit AES<br /><small>Cipher strength is defined in the file constants.php; if you desire to change the cipher strength, you may do so and then restart installation. Unless your site is mission-critical, changing the cipher strength is not necessary.</small></li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1564
      </ul>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1565
      <div class="pagenav">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1566
        <table border="0">
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1567
          <tr>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1568
            <td><input type="submit" value="Install Enano!" name="_cont" /></td><td><p><span style="font-weight: bold;">Before clicking continue:</span><br />&bull; Pray.</p></td>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1569
          </tr>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1570
        </table>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1571
      </div>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1572
    </form>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1573
    <?php
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1574
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1575
  case "install":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1576
    if(!isset($_POST['db_host']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1577
       !isset($_POST['db_name']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1578
       !isset($_POST['db_user']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1579
       !isset($_POST['db_pass']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1580
       !isset($_POST['sitename']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1581
       !isset($_POST['sitedesc']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1582
       !isset($_POST['copyright']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1583
       !isset($_POST['admin_user']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1584
       !isset($_POST['admin_pass']) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1585
       !isset($_POST['admin_embed_php']) || ( isset($_POST['admin_embed_php']) && !in_array($_POST['admin_embed_php'], array('2', '4')) ) ||
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1586
       !isset($_POST['urlscheme'])
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1587
       )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1588
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1589
      echo 'The installer has detected that one or more required form values is not set. Please <a href="install.php?mode=sysreqs">restart the installation</a>.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1590
      $template->footer();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1591
      exit;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1592
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1593
    switch($_POST['urlscheme'])
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1594
    {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1595
      case "ugly":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1596
      default:
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1597
        $cp = scriptPath.'/index.php?title=';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1598
        break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1599
      case "short":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1600
        $cp = scriptPath.'/index.php/';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1601
        break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1602
      case "tiny":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1603
        $cp = scriptPath.'/';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1604
        break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1605
    }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1606
    function err($t) { global $template; echo $t; $template->footer(); exit; }
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1607
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1608
    // $stages = array('connect', 'decrypt', 'genkey', 'parse', 'sql', 'writeconfig', 'renameconfig', 'startapi', 'initlogs');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1609
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1610
    if ( !preg_match('/^[a-z0-9_]*$/', $_POST['table_prefix']) )
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1611
      err('Hacking attempt was detected in table_prefix.');
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1612
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1613
      start_install_table();
216
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1614
      
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1615
      // Are we just trying to auto-rename the config files? If so, skip everything else
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1616
      if ( !isset($_GET['stage']) || ( isset($_GET['stage']) && $_GET['stage'] != 'renameconfig' ) )
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1617
      {
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1618
      
216
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1619
        // The stages connect, decrypt, genkey, and parse are preprocessing and don't do any actual data modification.
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1620
        // Thus, they need to be run on each retry, e.g. never skipped.
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1621
        run_installer_stage('connect', 'Connect to MySQL', 'stg_mysql_connect', 'MySQL denied our attempt to connect to the database. This is most likely because your login information was incorrect. You will most likely need to <a href="install.php?mode=license">restart the installation</a>.', false);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1622
        if ( isset($_POST['drop_tables']) )
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1623
        {
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1624
          // Are we supposed to drop any existing tables? If so, do it now
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1625
          run_installer_stage('drop', 'Drop existing Enano tables', 'stg_drop_tables', 'This step never returns failure');
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1626
        }
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1627
        run_installer_stage('decrypt', 'Decrypt administration password', 'stg_decrypt_admin_pass', 'The administration password you entered couldn\'t be decrypted. It is possible that your server did not properly store the encryption key in the configuration file. Please check the file permissions on config.new.php. You may have to return to the login stage of the installation, clear your browser cache, and then rerun this installation.', false);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1628
        run_installer_stage('genkey', 'Generate ' . AES_BITS . '-bit AES private key', 'stg_generate_aes_key', 'Enano encountered an internal error while generating the site encryption key. Please contact the Enano team for support.', false);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1629
        run_installer_stage('parse', 'Prepare to execute schema file', 'stg_parse_schema', 'Enano encountered an internal error while parsing the SQL file that contains the database structure and initial data. Please contact the Enano team for support.', false);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1630
        run_installer_stage('sql', 'Execute installer schema', 'stg_install', 'The installation failed because an SQL query wasn\'t quite correct. It is possible that you entered malformed data into a form field, or there may be a bug in Enano with your version of MySQL. Please contact the Enano team for support.', false);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1631
        run_installer_stage('writeconfig', 'Write configuration files', 'stg_write_config', 'Enano was unable to write the configuration file with your site\'s database credentials. This is almost always because your configuration file does not have the correct permissions. On Windows servers, you may see this message even if the check on the System Requirements page passed. Temporarily running IIS as the Administrator user may help.');
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1632
        
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1633
        // Mainstream installation complete - Enano should be usable now
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1634
        // The stage of starting the API is special because it has to be called out of function context.
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1635
        // To alleviate this, we have two functions, one that returns success and one that returns failure
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1636
        // If the Enano API load is successful, the success function is called to report the action to the user
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1637
        // If unsuccessful, the failure report is sent
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1638
        
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1639
        $template_bak = $template;
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1640
        
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1641
        $_GET['title'] = 'Main_Page';
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1642
        require('includes/common.php');
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1643
        
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1644
        if ( is_object($db) && is_object($session) )
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1645
        {
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1646
          run_installer_stage('startapi', 'Start the Enano API', 'stg_start_api_success', '...', false);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1647
        }
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1648
        else
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1649
        {
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1650
          run_installer_stage('startapi', 'Start the Enano API', 'stg_start_api_failure', 'The Enano API could not be started. This is an error that should never occur; please contact the Enano team for support.', false);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1651
        }
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1652
        
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1653
        // We need to be logged in (with admin rights) before logs can be flushed
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1654
        $admin_password = stg_decrypt_admin_pass(true);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1655
        $session->login_without_crypto($_POST['admin_user'], $admin_password, false);
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1656
        
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1657
        // Now that login cookies are set, initialize the session manager and ACLs
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1658
        $session->start();
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1659
        $paths->init();
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1660
        
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1661
        run_installer_stage('initlogs', 'Initialize logs', 'stg_init_logs', '<b>The session manager denied the request to flush logs for the main page.</b><br />
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1662
                             While under most circumstances you can still <a href="install.php?mode=finish">finish the installation</a> after renaming your configuration files, you should be aware that some servers cannot
216
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1663
                             properly set cookies due to limitations with PHP. These limitations are exposed primarily when this issue is encountered during installation. If you choose
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1664
                             to finish the installation, please be aware that you may be unable to log into your site.');
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1665
        
218
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
  1666
        run_installer_stage('buildindex', 'Initialize search index', 'stg_build_index', 'Something went wrong while the page manager was attempting to build a search index.');
e0ec986c0af3 Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents: 217
diff changeset
  1667
        
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1668
        /*
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1669
         * HACKERS:
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1670
         * If you're making a custom distribution of Enano, put all your custom plugin-related code here.
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1671
         * You have access to the full Enano API as well as being logged in with complete admin rights.
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1672
         * Don't do anything horrendously fancy here, unless you add a new stage (or more than one) and
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1673
         * have the progress printed out properly.
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1674
         */
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1675
        
216
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1676
      } // check for stage == renameconfig
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1677
      else
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1678
      {
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1679
        // If we did skip the main installer routine, set $template_bak to make the reversal later work properly
216
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1680
        $template_bak = $template;
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1681
      }
215
58477ab3937f Hopefully managed to put enough hacks in there to make renaming the config file the last step, so if it fails, it can be done manually
Dan
parents: 214
diff changeset
  1682
217
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1683
      // Final step is to rename the config file
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1684
      // In early revisions of 1.0.2, this step was performed prior to the initialization of the Enano API. It was decided to move
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1685
      // this stage to the end because it will fail more often than any other stage, thus making alternate routes imperative. If this
5bcdee999015 Major fixes to the ban system - large IP match lists don't slow down the server miserably anymore.
Dan
parents: 216
diff changeset
  1686
      // stage fails, then no big deal, we'll just have the user rename the files manually and then let them see the pretty success message.
216
06db76725891 Fixed a couple of renaming issues in the installer
Dan
parents: 215
diff changeset
  1687
      run_installer_stage('renameconfig', 'Rename configuration files', 'stg_rename_config', 'Enano couldn\'t rename the configuration files to their correct production names. Please CHMOD the folder where your Enano files are to 777 and click the retry button below, <b><u>or</u></b> perform the following rename operations and then <a href="install.php?mode=finish">finish the installation</a>.<ul><li>Rename config.new.php to config.php</li><li>Rename .htaccess.new to .htaccess (only if you selected Tiny URLs)</li></ul>');
215
58477ab3937f Hopefully managed to put enough hacks in there to make renaming the config file the last step, so if it fails, it can be done manually
Dan
parents: 214
diff changeset
  1688
      
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1689
      close_install_table();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1690
      
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1691
      unset($template);
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1692
      $template =& $template_bak;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1693
    
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1694
      echo '<h3>Installation of Enano is complete.</h3><p>Review any warnings above, and then <a href="install.php?mode=finish">click here to finish the installation</a>.';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1695
      
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1696
      // echo '<script type="text/javascript">window.location="'.scriptPath.'/install.php?mode=finish";</script>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1697
      
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1698
    break;
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1699
  case "finish":
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1700
    echo '<h3>Congratulations!</h3>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1701
           <p>You have finished installing Enano on this server.</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1702
          <h3>Now what?</h3>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1703
           <p>Click the link below to see the main page for your website. Where to go from here:</p>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1704
           <ul>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1705
             <li>The first thing you should do is log into your site using the Log in link on the sidebar.</li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1706
             <li>Go into the Administration panel, expand General, and click General Configuration. There you will be able to configure some basic information about your site.</li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1707
             <li>Visit the <a href="http://enanocms.org/Category:Plugins" onclick="window.open(this.href); return false;">Enano Plugin Gallery</a> to download and use plugins on your site.</li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1708
             <li>Periodically create a backup of your database and filesystem, in case something goes wrong. This should be done at least once a week &ndash; more for wiki-based sites.</li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1709
             <li>Hire some moderators, to help you keep rowdy users tame.</li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1710
             <li>Tell the <a href="http://enanocms.org/Contact_us">Enano team</a> what you think.</li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1711
             <li><b>Spread the word about Enano by adding a link to the Enano homepage on your sidebar!</b> You can enable this option in the General Configuration section of the administration panel.</li>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1712
           </ul>
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1713
           <p><a href="index.php">Go to your website...</a></p>';
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1714
    break;
222
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
  1715
  // this stage is never shown during the installation, but is provided for legal purposes
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
  1716
  case "showlicense":
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
  1717
    show_license(true);
acfdccf7a2bf Re-sync Oxygen and Mint and Oxygen simple with Oxygen main; a couple improvements to the redirect-on-no-config code
Dan
parents: 218
diff changeset
  1718
    break;
205
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1719
}
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1720
$template->footer();
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1721
 
62ee6685ad18 Merging in all changes from revision 185 (90b7a52bea45)
Dan
parents: 184 203
diff changeset
  1722
?>