install.php
author Dan
Fri, 09 Nov 2007 23:36:49 -0500
changeset 203 acb9d021b860
parent 202 c9fd175289aa
child 205 62ee6685ad18
permissions -rw-r--r--
Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     1
<?php
73
0a74676a2f2f Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents: 72
diff changeset
     2
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     3
/*
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     4
 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
142
ca9118d9c0f2 Rebrand as 1.0.2 (Coblynau); internal links are now parsed by RenderMan::parse_internal_links()
Dan
parents: 140
diff changeset
     5
 * Version 1.0.2 (Coblynau)
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     6
 * Copyright (C) 2006-2007 Dan Fuhry
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     7
 * install.php - handles everything related to installation and initial configuration
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     8
 *
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     9
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    10
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    11
 *
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    12
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    13
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    14
 */
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    15
 
11
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
    16
@include('config.php');
186
9e09480cb38f That merge did NOT go well.
Dan
parents: 152
diff changeset
    17
if( ( defined('ENANO_INSTALLED') || defined('MIDGET_INSTALLED') ) && ((isset($_GET['mode']) && ($_GET['mode']!='finish' && $_GET['mode']!='css')) || !isset($_GET['mode'])))
9e09480cb38f That merge did NOT go well.
Dan
parents: 152
diff changeset
    18
{
148
42c6c83b8a00 Rebrand for 1.0.2 (again, lol)
Dan
parents: 142
diff changeset
    19
  $_GET['title'] = 'Enano:Installation_locked';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    20
  require('includes/common.php');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
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>');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    22
  exit;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    23
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    24
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    25
define('IN_ENANO_INSTALL', 'true');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    26
145
6f0bbf88c325 Rebrand for 1.0.2b1
Dan
parents: 142
diff changeset
    27
define('ENANO_VERSION', '1.0.2');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    28
// In beta versions, define ENANO_BETA_VERSION here
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    29
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    30
if(!defined('scriptPath')) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    31
  $sp = dirname($_SERVER['REQUEST_URI']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    32
  if($sp == '/' || $sp == '\\') $sp = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    33
  define('scriptPath', $sp);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    34
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    35
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    36
if(!defined('contentPath')) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    37
  $sp = dirname($_SERVER['REQUEST_URI']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    38
  if($sp == '/' || $sp == '\\') $sp = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    39
  define('contentPath', $sp);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    40
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    41
global $_starttime, $this_page, $sideinfo;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    42
$_starttime = microtime(true);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    43
12
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    44
// Determine directory (special case for development servers)
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    45
if ( strpos(__FILE__, '/repo/') && file_exists('.enanodev') )
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    46
{
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    47
  $filename = str_replace('/repo/', '/', __FILE__);
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    48
}
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    49
else
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    50
{
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    51
  $filename = __FILE__;
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    52
}
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    53
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
    54
define('ENANO_ROOT', dirname($filename));
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    55
13
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
    56
function is_page($p)
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
    57
{
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
    58
  return true;
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
    59
}
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
    60
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    61
require('includes/wikiformat.php');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    62
require('includes/constants.php');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    63
require('includes/rijndael.php');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    64
require('includes/functions.php');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    65
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
    66
strip_magic_quotes_gpc();
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    67
$neutral_color = 'C';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    68
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    69
//
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    70
// INSTALLER LIBRARY
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    71
//
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    72
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    73
function run_installer_stage($stage_id, $stage_name, $function, $failure_explanation, $allow_skip = true)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    74
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    75
  static $resumed = false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    76
  static $resume_stack = array();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    77
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    78
  if ( empty($resume_stack) && isset($_POST['resume_stack']) && preg_match('/[a-z_]+((\|[a-z_]+)+)/', $_POST['resume_stack']) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    79
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    80
    $resume_stack = explode('|', $_POST['resume_stack']);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    81
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    82
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    83
  $already_run = false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    84
  if ( in_array($stage_id, $resume_stack) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    85
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    86
    $already_run = true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    87
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    88
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    89
  if ( !$resumed )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    90
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    91
    if ( !isset($_GET['stage']) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    92
      $resumed = true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    93
    if ( isset($_GET['stage']) && $_GET['stage'] == $stage_id )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    94
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    95
      $resumed = true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    96
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    97
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    98
  if ( !$resumed && $allow_skip )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
    99
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   100
    echo_stage_success($stage_id, "[dbg: skipped] $stage_name");
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   101
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   102
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   103
  if ( !function_exists($function) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   104
    die('libenanoinstall: CRITICAL: function "' . $function . '" for ' . $stage_id . ' doesn\'t exist');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   105
  $result = @call_user_func($function, false, $already_run);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   106
  if ( $result )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   107
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   108
    echo_stage_success($stage_id, $stage_name);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   109
    $resume_stack[] = $stage_id;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   110
    return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   111
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   112
  else
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   113
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   114
    echo_stage_failure($stage_id, $stage_name, $failure_explanation, $resume_stack);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   115
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   116
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   117
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   118
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   119
function start_install_table()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   120
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   121
  echo '<table border="0" cellspacing="0" cellpadding="0">' . "\n";
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   122
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   123
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   124
function close_install_table()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   125
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   126
  echo '</table>' . "\n\n";
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   127
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   128
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   129
function echo_stage_success($stage_id, $stage_name)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   130
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   131
  global $neutral_color;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   132
  $neutral_color = ( $neutral_color == 'A' ) ? 'C' : 'A';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   133
  ob_start();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   134
  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";
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   135
  ob_end_flush();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   136
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   137
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   138
function echo_stage_failure($stage_id, $stage_name, $failure_explanation, $resume_stack)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   139
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   140
  global $neutral_color;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   141
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   142
  $neutral_color = ( $neutral_color == 'A' ) ? 'C' : 'A';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   143
  ob_start();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
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";
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   145
  ob_end_flush();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   146
  close_install_table();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   147
  $post_data = '';
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   148
  $mysql_error = mysql_error();
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   149
  foreach ( $_POST as $key => $value )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   150
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   151
    $value = htmlspecialchars($value);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   152
    $key = htmlspecialchars($key);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   153
    $post_data .= "          <input type=\"hidden\" name=\"$key\" value=\"$value\" />\n";
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   154
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   155
  echo '<form action="install.php?mode=install&amp;stage=' . $stage_id . '" method="post">
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   156
          ' . $post_data . '
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   157
          <input type="hidden" name="resume_stack" value="' . htmlspecialchars(implode('|', $resume_stack)) . '" />
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   158
          <h3>Enano installation failed.</h3>
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   159
           <p>' . $failure_explanation . '</p>
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   160
           ' . ( !empty($mysql_error) ? "<p>The error returned from MySQL was: $mysql_error</p>" : '' ) . '
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   161
           <p>When you have corrected the error, click the button below to attempt to continue the installation.</p>
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   162
           <p style="text-align: center;"><input type="submit" value="Retry installation" /></p>
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   163
        </form>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   164
  global $template, $template_bak;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   165
  if ( is_object($template_bak) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   166
    $template_bak->footer();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   167
  else
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   168
    $template->footer();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   169
  exit;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   170
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   171
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   172
//
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   173
// INSTALLER STAGES
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   174
//
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   175
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   176
function stg_mysql_connect($act_get = false)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   177
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   178
  static $conn = false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   179
  if ( $act_get )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   180
    return $conn;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   181
  
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   182
  $db_user =& $_POST['db_user'];
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   183
  $db_pass =& $_POST['db_pass'];
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   184
  $db_name =& $_POST['db_name'];
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   185
  
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   186
  if ( !preg_match('/^[a-z0-9_-]+$/', $db_name) )
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   187
  {
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   188
    $db_name = htmlspecialchars($db_name);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   189
    die("<p>SECURITY: malformed database name \"$db_name\"</p>");
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   190
  }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   191
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   192
  // First, try to connect using the normal credentials
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   193
  $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], $_POST['db_pass']);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   194
  if ( !$conn )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   195
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   196
    // Connection failed. Do we have the root username and password?
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   197
    if ( !empty($_POST['db_root_user']) && !empty($_POST['db_root_pass']) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   198
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   199
      $conn_root = @mysql_connect($_POST['db_host'], $_POST['db_root_user'], $_POST['db_root_pass']);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   200
      if ( !$conn_root )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   201
      {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   202
        // Couldn't connect using either set of credentials. Bail out.
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   203
        return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   204
      }
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   205
      unset($db_user, $db_pass);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   206
      $db_user = mysql_real_escape_string($_POST['db_user']);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   207
      $db_pass = mysql_real_escape_string($_POST['db_pass']);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   208
      // Create the user account
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   209
      $q = @mysql_query("GRANT ALL PRIVILEGES ON test.* TO '{$db_user}'@'localhost' IDENTIFIED BY '$db_pass' WITH GRANT OPTION;", $conn_root);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   210
      if ( !$q )
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   211
      {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   212
        return false;
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   213
      }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   214
      // Revoke privileges from test, we don't need them
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   215
      $q = @mysql_query("REVOKE ALL PRIVILEGES ON test.* FROM '{$db_user}'@'localhost';", $conn_root);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   216
      if ( !$q )
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   217
      {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   218
        return false;
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   219
      }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   220
      if ( $_POST['db_host'] != 'localhost' && $_POST['db_host'] != '127.0.0.1' && $_POST['db_host'] != '::1' )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   221
      {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   222
        // If not connecting to a server running on localhost, allow from any host
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   223
        // this is safer than trying to detect the hostname of the webserver, but less secure
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   224
        $q = @mysql_query("GRANT ALL PRIVILEGES ON test.* TO '{$db_user}'@'%' IDENTIFIED BY '$db_pass' WITH GRANT OPTION;", $conn_root);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   225
        if ( !$q )
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   226
        {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   227
          return false;
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   228
        }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   229
        // Revoke privileges from test, we don't need them
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   230
        $q = @mysql_query("REVOKE ALL PRIVILEGES ON test.* FROM '{$db_user}'@'%';", $conn_root);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   231
        if ( !$q )
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   232
        {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   233
          return false;
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   234
        }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   235
      }
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   236
      mysql_close($conn_root);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   237
      $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], $_POST['db_pass']);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   238
      if ( !$conn )
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   239
      {
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   240
        // This should honestly never happen.
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   241
        return false;
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   242
      }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   243
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   244
  }
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   245
  $q = @mysql_query("USE `$db_name`;", $conn);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   246
  if ( !$q )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   247
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   248
    // access denied to the database; try the whole root schenanegan again
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   249
    if ( !empty($_POST['db_root_user']) && !empty($_POST['db_root_pass']) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   250
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   251
      $conn_root = @mysql_connect($_POST['db_host'], $_POST['db_root_user'], $_POST['db_root_pass']);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   252
      if ( !$conn_root )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   253
      {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   254
        // Couldn't connect as root; bail out
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   255
        return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   256
      }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   257
      // create the database, if it doesn't exist
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   258
      $q = @mysql_query("CREATE DATABASE IF NOT EXISTS `$db_name`;", $conn_root);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   259
      if ( !$q )
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   260
      {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   261
        // this really should never fail, so don't give any tolerance to it
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   262
        return false;
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   263
      }
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   264
      unset($db_user, $db_pass);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   265
      $db_user = mysql_real_escape_string($_POST['db_user']);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   266
      $db_pass = mysql_real_escape_string($_POST['db_pass']);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   267
      // we're in with root rights; grant access to the database
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   268
      $q = @mysql_query("GRANT ALL PRIVILEGES ON `$db_name`.* TO '{$db_user}'@'localhost';", $conn_root);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   269
      if ( !$q )
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   270
      {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   271
        return false;
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   272
      }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   273
      if ( $_POST['db_host'] != 'localhost' && $_POST['db_host'] != '127.0.0.1' && $_POST['db_host'] != '::1' )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   274
      {
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   275
        $q = @mysql_query("GRANT ALL PRIVILEGES ON `$db_name`.* TO '{$db_user}'@'%';", $conn_root);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   276
        if ( !$q )
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   277
        {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   278
          return false;
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   279
        }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   280
      }
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   281
      mysql_close($conn_root);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   282
      // grant tables have hopefully been flushed, kill and reconnect our regular user connection
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   283
      mysql_close($conn);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   284
      $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], $_POST['db_pass']);
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   285
      if ( !$conn )
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   286
      {
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   287
        return false;
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   288
      }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   289
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   290
    else
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   291
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   292
      return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   293
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   294
    // try again
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
   295
    $q = @mysql_query("USE `$db_name`;", $conn);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   296
    if ( !$q )
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   297
    {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   298
      // really failed this time; bail out
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   299
      return false;
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
   300
    }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   301
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   302
  // connected and database exists
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   303
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   304
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   305
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   306
function stg_drop_tables()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   307
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   308
  $conn = stg_mysql_connect(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   309
  if ( !$conn )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   310
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   311
  // Our list of tables included in Enano
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   312
  $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', 'search_cache', 'tags', 'page_groups', 'page_group_members' );
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   313
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   314
  // Drop each table individually; if it fails, it probably means we're trying to drop a
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   315
  // table that didn't exist in the Enano version we're deleting the database for.
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   316
  foreach ( $tables as $table )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   317
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   318
    // Remember that table_prefix is sanitized.
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   319
    $table = "{$_POST['table_prefix']}$table";
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   320
    @mysql_query("DROP TABLE $table;", $conn);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   321
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   322
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   323
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   324
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   325
function stg_decrypt_admin_pass($act_get = false)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   326
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   327
  static $decrypted_pass = false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   328
  if ( $act_get )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   329
    return $decrypted_pass;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   330
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   331
  $aes = new AESCrypt(AES_BITS, AES_BLOCKSIZE);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   332
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   333
  if ( !empty($_POST['crypt_data']) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   334
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   335
    require('config.new.php');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   336
    if ( !isset($cryptkey) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   337
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   338
      return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   339
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   340
    define('_INSTRESUME_AES_KEYBACKUP', $key);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   341
    $key = hexdecode($cryptkey);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   342
    
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   343
    $decrypted_pass = $aes->decrypt($_POST['crypt_data'], $key, ENC_HEX);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   344
    
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   345
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   346
  else
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   347
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   348
    $decrypted_pass = $_POST['admin_pass'];
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   349
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   350
  if ( empty($decrypted_pass) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   351
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   352
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   353
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   354
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   355
function stg_generate_aes_key($act_get = false)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   356
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   357
  static $key = false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   358
  if ( $act_get )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   359
    return $key;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   360
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   361
  $aes = new AESCrypt(AES_BITS, AES_BLOCKSIZE);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   362
  $key = $aes->gen_readymade_key();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   363
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   364
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   365
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   366
function stg_parse_schema($act_get = false)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   367
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   368
  static $schema;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   369
  if ( $act_get )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   370
    return $schema;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   371
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   372
  $admin_pass = stg_decrypt_admin_pass(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   373
  $key = stg_generate_aes_key(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   374
  $aes = new AESCrypt(AES_BITS, AES_BLOCKSIZE);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   375
  $key = $aes->hextostring($key);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   376
  $admin_pass = $aes->encrypt($admin_pass, $key, ENC_HEX);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   377
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   378
  $cacheonoff = is_writable(ENANO_ROOT.'/cache/') ? '1' : '0';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   379
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   380
  $schema = file_get_contents('schema.sql');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   381
  $schema = str_replace('{{SITE_NAME}}',    mysql_real_escape_string($_POST['sitename']   ), $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   382
  $schema = str_replace('{{SITE_DESC}}',    mysql_real_escape_string($_POST['sitedesc']   ), $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   383
  $schema = str_replace('{{COPYRIGHT}}',    mysql_real_escape_string($_POST['copyright']  ), $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   384
  $schema = str_replace('{{ADMIN_USER}}',   mysql_real_escape_string($_POST['admin_user'] ), $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   385
  $schema = str_replace('{{ADMIN_PASS}}',   mysql_real_escape_string($admin_pass          ), $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   386
  $schema = str_replace('{{ADMIN_EMAIL}}',  mysql_real_escape_string($_POST['admin_email']), $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   387
  $schema = str_replace('{{ENABLE_CACHE}}', mysql_real_escape_string($cacheonoff          ), $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   388
  $schema = str_replace('{{REAL_NAME}}',    '',                                              $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   389
  $schema = str_replace('{{TABLE_PREFIX}}', $_POST['table_prefix'],                          $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   390
  $schema = str_replace('{{VERSION}}',      ENANO_VERSION,                                   $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   391
  $schema = str_replace('{{ADMIN_EMBED_PHP}}', $_POST['admin_embed_php'],                    $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   392
  // Not anymore!! :-D
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   393
  // $schema = str_replace('{{BETA_VERSION}}', ENANO_BETA_VERSION,                              $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   394
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   395
  if(isset($_POST['wiki_mode']))
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   396
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   397
    $schema = str_replace('{{WIKI_MODE}}', '1', $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   398
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   399
  else
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   400
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   401
    $schema = str_replace('{{WIKI_MODE}}', '0', $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   402
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   403
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   404
  // Build an array of queries      
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   405
  $schema = explode("\n", $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   406
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   407
  foreach ( $schema as $i => $sql )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   408
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   409
    $query =& $schema[$i];
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   410
    $t = trim($query);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   411
    if ( empty($t) || preg_match('/^(\#|--)/i', $t) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   412
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   413
      unset($schema[$i]);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   414
      unset($query);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   415
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   416
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   417
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   418
  $schema = array_values($schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   419
  $schema = implode("\n", $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   420
  $schema = explode(";\n", $schema);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   421
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   422
  foreach ( $schema as $i => $sql )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   423
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   424
    $query =& $schema[$i];
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   425
    if ( substr($query, ( strlen($query) - 1 ), 1 ) != ';' )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   426
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   427
      $query .= ';';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   428
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   429
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   430
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   431
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   432
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   433
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   434
function stg_install($_unused, $already_run)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   435
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   436
  // This one's pretty easy.
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   437
  $conn = stg_mysql_connect(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   438
  if ( !is_resource($conn) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   439
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   440
  $schema = stg_parse_schema(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   441
  if ( !is_array($schema) )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   442
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   443
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   444
  // If we're resuming installation, the encryption key was regenerated.
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   445
  // This means we'll have to update the encrypted password in the database.
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   446
  if ( $already_run )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   447
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   448
    $admin_pass = stg_decrypt_admin_pass(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   449
    $key = stg_generate_aes_key(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   450
    $aes = new AESCrypt(AES_BITS, AES_BLOCKSIZE);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   451
    $key = $aes->hextostring($key);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   452
    $admin_pass = $aes->encrypt($admin_pass, $key, ENC_HEX);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   453
    $admin_user = mysql_real_escape_string($_POST['admin_user']);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   454
    
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   455
    $q = @mysql_query("UPDATE {$_POST['table_prefix']}users SET password='$admin_pass' WHERE username='$admin_user';");
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   456
    if ( !$q )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   457
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   458
      echo '<p><tt>MySQL return: ' . mysql_error() . '</tt></p>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   459
      return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   460
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   461
    
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   462
    return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   463
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   464
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   465
  // OK, do the loop, baby!!!
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   466
  foreach($schema as $q)
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   467
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   468
    $r = mysql_query($q, $conn);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   469
    if ( !$r )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   470
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   471
      echo '<p><tt>MySQL return: ' . mysql_error() . '</tt></p>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   472
      return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   473
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   474
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   475
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   476
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   477
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   478
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   479
function stg_write_config()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   480
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   481
  $privkey = stg_generate_aes_key(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   482
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   483
  switch($_POST['urlscheme'])
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   484
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   485
    case "ugly":
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   486
    default:
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   487
      $cp = scriptPath.'/index.php?title=';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   488
      break;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   489
    case "short":
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   490
      $cp = scriptPath.'/index.php/';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   491
      break;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   492
    case "tiny":
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   493
      $cp = scriptPath.'/';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   494
      break;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   495
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   496
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   497
  if ( $_POST['urlscheme'] == 'tiny' )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   498
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   499
    $contents = '# Begin Enano rules
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   500
RewriteEngine on
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   501
RewriteCond %{REQUEST_FILENAME} !-d
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   502
RewriteCond %{REQUEST_FILENAME} !-f
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   503
RewriteRule ^(.+) '.scriptPath.'/index.php?title=$1 [L,QSA]
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   504
RewriteRule \.(php|html|gif|jpg|png|css|js)$ - [L]
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   505
# End Enano rules
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   506
';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   507
    if ( file_exists('./.htaccess') )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   508
      $ht = fopen(ENANO_ROOT.'/.htaccess', 'a+');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   509
    else
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   510
      $ht = fopen(ENANO_ROOT.'/.htaccess.new', 'w');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   511
    if ( !$ht )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   512
      return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   513
    fwrite($ht, $contents);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   514
    fclose($ht);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   515
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   516
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   517
  $config_file = '<?php
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   518
/* Enano auto-generated configuration file - editing not recommended! */
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   519
$dbhost   = \''.addslashes($_POST['db_host']).'\';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   520
$dbname   = \''.addslashes($_POST['db_name']).'\';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   521
$dbuser   = \''.addslashes($_POST['db_user']).'\';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   522
$dbpasswd = \''.addslashes($_POST['db_pass']).'\';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   523
if ( !defined(\'ENANO_CONSTANTS\') )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   524
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   525
define(\'ENANO_CONSTANTS\', \'\');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   526
define(\'table_prefix\', \''.addslashes($_POST['table_prefix']).'\');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   527
define(\'scriptPath\', \''.scriptPath.'\');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   528
define(\'contentPath\', \''.$cp.'\');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   529
define(\'ENANO_INSTALLED\', \'true\');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   530
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   531
$crypto_key = \''.$privkey.'\';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   532
?>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   533
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   534
  $cf_handle = fopen(ENANO_ROOT.'/config.new.php', 'w');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   535
  if ( !$cf_handle )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   536
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   537
  fwrite($cf_handle, $config_file);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   538
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   539
  fclose($cf_handle);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   540
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   541
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   542
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   543
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   544
function _stg_rename_config_revert()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   545
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   546
  if ( file_exists('./config.php') )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   547
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   548
    @rename('./config.php', './config.new.php');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   549
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   550
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   551
  $handle = @fopen('./config.php.new', 'w');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   552
  if ( !$handle )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   553
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   554
  $contents = '<?php $cryptkey = \'' . _INSTRESUME_AES_KEYBACKUP . '\'; ?>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   555
  fwrite($handle, $contents);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   556
  fclose($handle);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   557
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   558
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   559
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   560
function stg_rename_config()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   561
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   562
  if ( !@rename('./config.new.php', './config.php') )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   563
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   564
    echo '<p>Can\'t rename config.php</p>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   565
    _stg_rename_config_revert();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   566
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   567
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   568
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   569
  if ( $_POST['urlscheme'] == 'tiny' && !file_exists('./.htaccess') )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   570
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   571
    if ( !@rename('./.htaccess.new', './.htaccess') )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   572
    {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   573
      echo '<p>Can\'t rename .htaccess</p>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   574
      _stg_rename_config_revert();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   575
      return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   576
    }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   577
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   578
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   579
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   580
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   581
function stg_start_api_success()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   582
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   583
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   584
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   585
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   586
function stg_start_api_failure()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   587
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   588
  return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   589
}
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   590
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   591
function stg_init_logs()
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   592
{
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   593
  global $db, $session, $paths, $template, $plugins; // Common objects
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   594
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   595
  $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']) . '\');');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   596
  if ( !$q )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   597
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   598
    echo '<p><tt>MySQL return: ' . mysql_error() . '</tt></p>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   599
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   600
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   601
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   602
  if ( !$session->get_permissions('clear_logs') )
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   603
  {
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   604
    echo '<p><tt>$session: denied clear_logs</tt></p>';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   605
    return false;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   606
  }
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   607
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   608
  PageUtils::flushlogs('Main_Page', 'Article');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   609
  
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   610
  return true;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
   611
}
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
   612
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   613
//die('Key size: ' . AES_BITS . '<br />Block size: ' . AES_BLOCKSIZE);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   614
13
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   615
if(!function_exists('wikiFormat'))
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   616
{
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   617
  function wikiFormat($message, $filter_links = true)
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   618
  {
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   619
    $wiki = & Text_Wiki::singleton('Mediawiki');
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   620
    $wiki->setRenderConf('Xhtml', 'code', 'css_filename', 'codefilename');
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   621
    $wiki->setRenderConf('Xhtml', 'wikilink', 'view_url', contentPath);
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   622
    $result = $wiki->transform($message, 'Xhtml');
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   623
    
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   624
    // HTML fixes
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   625
    $result = preg_replace('#<tr>([\s]*?)<\/tr>#is', '', $result);
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   626
    $result = preg_replace('#<p>([\s]*?)<\/p>#is', '', $result);
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   627
    $result = preg_replace('#<br />([\s]*?)<table#is', '<table', $result);
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   628
    
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   629
    return $result;
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   630
  }
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   631
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   632
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   633
global $failed, $warned;
13
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   634
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   635
$failed = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   636
$warned = false;
13
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   637
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   638
function not($var)
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   639
{
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   640
  if($var)
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   641
  {
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   642
    return false;
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   643
  } 
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   644
  else
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   645
  {
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   646
    return true;
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   647
  }
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   648
}
fdd6b9dd42c3 Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
parents: 12
diff changeset
   649
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   650
function run_test($code, $desc, $extended_desc, $warn = false)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   651
{
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   652
  global $failed, $warned;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   653
  static $cv = true;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   654
  $cv = not($cv);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   655
  $val = eval($code);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   656
  if($val)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   657
  {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   658
    if($cv) $color='CCFFCC'; else $color='AAFFAA';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   659
    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>";
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   660
  } elseif(!$val && $warn) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   661
    if($cv) $color='FFFFCC'; else $color='FFFFAA';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   662
    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>";
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   663
    $warned = true;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   664
  } else {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   665
    if($cv) $color='FFCCCC'; else $color='FFAAAA';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   666
    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>";
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   667
    $failed = true;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   668
  }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   669
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   670
function is_apache() { $r = strstr($_SERVER['SERVER_SOFTWARE'], 'Apache') ? true : false; return $r; }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   671
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   672
require_once('includes/template.php');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   673
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   674
if(!isset($_GET['mode'])) $_GET['mode'] = 'welcome';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   675
switch($_GET['mode'])
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   676
{
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   677
  case 'mysql_test':
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   678
    error_reporting(0);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   679
    $dbhost     = rawurldecode($_POST['host']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   680
    $dbname     = rawurldecode($_POST['name']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   681
    $dbuser     = rawurldecode($_POST['user']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   682
    $dbpass     = rawurldecode($_POST['pass']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   683
    $dbrootuser = rawurldecode($_POST['root_user']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   684
    $dbrootpass = rawurldecode($_POST['root_pass']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   685
    if($dbrootuser != '')
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   686
    {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   687
      $conn = mysql_connect($dbhost, $dbrootuser, $dbrootpass);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   688
      if(!$conn)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   689
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   690
        $e = mysql_error();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   691
        if(strstr($e, "Lost connection"))
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   692
          die('host'.$e);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   693
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   694
          die('root'.$e);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   695
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   696
      $rsp = 'good';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   697
      $q = mysql_query('USE '.$dbname, $conn);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   698
      if(!$q)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   699
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   700
        $e = mysql_error();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   701
        if(strstr($e, 'Unknown database'))
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   702
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   703
          $rsp .= '_creating_db';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   704
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   705
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   706
      mysql_close($conn);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   707
      $conn = mysql_connect($dbhost, $dbuser, $dbpass);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   708
      if(!$conn)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   709
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   710
        $e = mysql_error();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   711
        if(strstr($e, "Lost connection"))
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   712
          die('host'.$e);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   713
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   714
          $rsp .= '_creating_user';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   715
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   716
      mysql_close($conn);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   717
      die($rsp);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   718
    }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   719
    else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   720
    {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   721
      $conn = mysql_connect($dbhost, $dbuser, $dbpass);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   722
      if(!$conn)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   723
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   724
        $e = mysql_error();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   725
        if(strstr($e, "Lost connection"))
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   726
          die('host'.$e);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   727
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   728
          die('auth'.$e);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   729
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   730
      $q = mysql_query('USE '.$dbname, $conn);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   731
      if(!$q)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   732
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   733
        $e = mysql_error();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   734
        if(strstr($e, 'Unknown database'))
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   735
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   736
          die('name'.$e);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   737
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   738
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   739
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   740
          die('perm'.$e);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   741
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   742
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   743
    }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   744
    $v = mysql_get_server_info();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   745
    if(version_compare($v, '4.1.17', '<')) die('vers'.$v);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   746
    mysql_close($conn);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   747
    die('good');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   748
    break;
11
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   749
  case 'pophelp':
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   750
    $topic = ( isset($_GET['topic']) ) ? $_GET['topic'] : 'invalid';
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   751
    switch($topic)
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   752
    {
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   753
      case 'admin_embed_php':
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   754
        $title = 'Allow administrators to embed PHP';
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   755
        $content = '<p>This option allows you to control whether anything between the standard &lt;?php and ?&gt; tags will be treated as
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   756
                        PHP code by Enano. If this option is enabled, and members of the Administrators group use these tags, Enano will
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   757
                        execute that code when the page is loaded. There are obvious potential security implications here, which should
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   758
                        be carefully considered before enabling this option.</p>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   759
                    <p>If you are the only administrator of this site, or if you have a high level of trust for those will be administering
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   760
                       the site with you, you should enable this to allow extreme customization of pages.</p>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   761
                    <p>Leave this option off if you are at all concerned about security – if your account is compromised and PHP embedding
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   762
                       is enabled, an attacker can run arbitrary code on your server! Enabling this will also allow administrators to
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   763
                       embed Javascript and arbitrary HTML and CSS.</p>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   764
                    <p>If you don\'t have experience coding in PHP, you can safely disable this option. You may change this at any time
98
6457a9b983c6 Fixed non-object reference in databaseless template, added locking for Javascript paginator, made comments on AES key size more clear in constants, and disallowed "anonymous" and IP addresses for admin username in install.php; Loch Ness release candidate
Dan
parents: 91
diff changeset
   765
                       using the ACL editor by selecting the Administrators group and This Entire Website under the scope selection. <!-- , or by
6457a9b983c6 Fixed non-object reference in databaseless template, added locking for Javascript paginator, made comments on AES key size more clear in constants, and disallowed "anonymous" and IP addresses for admin username in install.php; Loch Ness release candidate
Dan
parents: 91
diff changeset
   766
                       using the "embedded PHP kill switch" in the administration panel. --></p>';
11
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   767
        break;
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   768
      default:
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   769
        $title = 'Invalid topic';
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   770
        $content = 'Invalid help topic.';
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   771
        break;
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   772
    }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   773
    echo <<<EOF
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   774
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   775
<html>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   776
  <head>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   777
    <title>Enano installation quick help &bull; {$title}</title>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   778
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   779
    <style type="text/css">
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   780
      body {
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   781
        font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   782
        font-size: 9pt;
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   783
      }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   784
      h2          { border-bottom: 1px solid #90B0D0; margin-bottom: 0; }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   785
      h3          { font-size: 11pt; font-weight: bold; }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   786
      li          { list-style: url(../images/bullet.gif); }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   787
      p           { margin: 1.0em; }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   788
      blockquote  { background-color: #F4F4F4; border: 1px dotted #406080; margin: 1em; padding: 10px; max-height: 250px; overflow: auto; }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   789
      a           { color: #7090B0; }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   790
      a:hover     { color: #90B0D0; }
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   791
    </style>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   792
  </head>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   793
  <body>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   794
    <h2>{$title}</h2>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   795
    {$content}
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   796
    <p style="text-align: right;">
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   797
      <a href="#" onclick="window.close(); return false;">Close window</a>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   798
    </p>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   799
  </body>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   800
</html>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   801
EOF;
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   802
    exit;
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
   803
    break;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   804
  default:
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   805
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   806
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   807
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   808
$template = new template_nodb();
21
663fcf528726 Updated all version numbers back to Banshee; a few preliminary steps towards full UTF-8 support in page URLs
Dan
parents: 16
diff changeset
   809
$template->load_theme('oxygen', 'bleu', false);
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   810
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   811
$modestrings = Array(
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   812
              'welcome' => 'Welcome',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   813
              'license' => 'License Agreement',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   814
              'sysreqs' => 'Server requirements',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   815
              'database'=> 'Database information',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   816
              'website' => 'Website configuration',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   817
              'login'   => 'Administration login',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   818
              'confirm' => 'Confirm installation',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   819
              'install' => 'Database installation',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   820
              'finish'  => 'Installation complete'
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   821
            );
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   822
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   823
$sideinfo = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   824
$vars = $template->extract_vars('elements.tpl');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   825
$p = $template->makeParserText($vars['sidebar_button']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   826
foreach ( $modestrings as $id => $str )
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   827
{
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   828
  if ( $_GET['mode'] == $id )
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   829
  {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   830
    $flags = 'style="font-weight: bold; text-decoration: underline;"';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   831
    $this_page = $str;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   832
  }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   833
  else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   834
  {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   835
    $flags = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   836
  }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   837
  $p->assign_vars(Array(
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   838
      'HREF' => '#',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   839
      'FLAGS' => $flags . ' onclick="return false;"',
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   840
      'TEXT' => $str
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   841
    ));
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   842
  $sideinfo .= $p->run();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   843
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   844
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   845
$template->init_vars();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   846
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   847
if(isset($_GET['mode']) && $_GET['mode'] == 'css')
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   848
{
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   849
  header('Content-type: text/css');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   850
  echo $template->get_css();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   851
  exit;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   852
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   853
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   854
$template->header();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   855
if(!isset($_GET['mode'])) $_GET['mode'] = 'license';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   856
switch($_GET['mode'])
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   857
{ 
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   858
  default:
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   859
  case 'welcome':
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   860
    ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   861
    <div style="text-align: center; margin-top: 10px;">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   862
      <img alt="[ Enano CMS Project logo ]" src="images/enano-artwork/installer-greeting-blue.png" style="display: block; margin: 0 auto; padding-left: 100px;" />
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   863
      <h2>Welcome to Enano</h2>
148
42c6c83b8a00 Rebrand for 1.0.2 (again, lol)
Dan
parents: 142
diff changeset
   864
      <h3>version 1.0.2 &ndash; stable<br />
145
6f0bbf88c325 Rebrand for 1.0.2b1
Dan
parents: 142
diff changeset
   865
      <span style="font-weight: normal;">also affectionately known as "coblynau" <tt>:)</tt></span></h3>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   866
      <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   867
      if ( file_exists('./_nightly.php') )
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   868
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   869
        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>';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   870
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   871
      ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   872
      <form action="install.php?mode=license" method="post">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   873
        <input type="submit" value="Start installation" />
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   874
      </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   875
    </div>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   876
    <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   877
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   878
  case "license":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   879
    ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   880
    <h3>Welcome to the Enano installer.</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   881
     <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   882
     <p>To get started, please read and accept the following license agreement. You've probably seen it before.</p>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   883
     <div style="height: 500px; clip: rect(0px,auto,500px,auto); overflow: auto; padding: 10px; border: 1px dashed #456798; margin: 1em;">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   884
       <h2>GNU General Public License</h2>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   885
       <h3>Declaration of license usage</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   886
       <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   887
       <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>
72
bda11e521e8a Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
parents: 69
diff changeset
   888
       <p><b>By clicking the button below or otherwise continuing the installation, you indicate your acceptance of this license agreement.</b></p>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   889
       <h3>Human-readable version</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   890
       <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   891
       <ul>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   892
       <li>You may to run Enano for any purpose.</li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   893
       <li>You may study how Enano works and adapt it to your needs.</li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   894
       <li>You may redistribute copies so you can help your neighbor.</li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   895
       <li>You may improve Enano and release your improvements to the public, so that the whole community benefits.</li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   896
       </ul>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   897
       <p>You may exercise the freedoms specified here provided that you comply with the express conditions of this license. The principal conditions are:</p>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   898
       <ul>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   899
       <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   900
       <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   901
       <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   902
       </ul>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   903
       <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   904
       <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   905
       if ( defined('ENANO_BETA_VERSION') )
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   906
       {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   907
         ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   908
         <h3>Notice for prerelease versions</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   909
         <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   910
         <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   911
       }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   912
       ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   913
       <h3>Lawyer-readable version</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   914
       <?php echo wikiFormat(file_get_contents(ENANO_ROOT . '/GPL')); ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   915
     </div>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   916
     <div class="pagenav">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   917
       <form action="install.php?mode=sysreqs" method="post">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   918
         <table border="0">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   919
         <tr>
72
bda11e521e8a Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
parents: 69
diff changeset
   920
         <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>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   921
         </tr>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   922
         </table>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   923
       </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   924
     </div>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   925
    <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   926
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   927
  case "sysreqs":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   928
    error_reporting(E_ALL);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   929
    ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   930
    <h3>Checking your server</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   931
     <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   932
    <table border="0" cellspacing="0" cellpadding="0">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   933
    <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   934
    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.');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   935
    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.');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   936
    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".');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   937
    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);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   938
    //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);
198
d5dff8148dfe Renaming config.php and .htaccess to *.new to allow tarbombing an Enano installation with no adverse effects; first attempt, may not work right.
Dan
parents: 197
diff changeset
   939
    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.');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   940
    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);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   941
    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);
72
bda11e521e8a Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
parents: 69
diff changeset
   942
    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);
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   943
    echo '</table>';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   944
    if(!$failed)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   945
    {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   946
      ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   947
      
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   948
      <div class="pagenav">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   949
      <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   950
      if($warned) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   951
        echo '<table border="0" cellspacing="0" cellpadding="0">';
202
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
   952
        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, certain features or enhancements that are part of Enano have been disabled to prevent further errors. You have seen those "fatal error" notices that spew from PHP, haven\'t you?<br /><br />&nbsp;&nbsp;&nbsp;<tt>Fatal error:</tt></b><tt> call to undefined function wannahockaloogie() in file <b>'.__FILE__.'</b> on line </tt><b><tt>'.__LINE__.'</tt>', true);
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   953
        echo '</table>';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   954
      } else {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   955
        echo '<table border="0" cellspacing="0" cellpadding="0">';
72
bda11e521e8a Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
parents: 69
diff changeset
   956
        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!');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   957
        echo '</table>';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   958
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   959
      ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   960
       <form action="install.php?mode=database" method="post">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   961
         <table border="0">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   962
         <tr>
202
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
   963
         <td><input type="submit" value="Continue" /></td><td><p><span style="font-weight: bold;">Before clicking continue:</span><br />&bull; Review the list above to ensure that you are satisfied with any of Enano's workarounds for your server. If you need a particular feature and that feature is listed as disabled above, you should take the opportunity now to correct the problem.<br />&bull; Have your database host, name, username, and password available</p></td>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   964
         </tr>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   965
         </table>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   966
       </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   967
     </div>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   968
     <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   969
    } else {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   970
      if($failed) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   971
        echo '<div class="pagenav"><table border="0" cellspacing="0" cellpadding="0">';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   972
        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.');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   973
        echo '</table></div>';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   974
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   975
    }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   976
    ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   977
    <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   978
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   979
  case "database":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   980
    ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   981
    <script type="text/javascript">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   982
      function ajaxGet(uri, f) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   983
        if (window.XMLHttpRequest) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   984
          ajax = new XMLHttpRequest();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   985
        } else {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   986
          if (window.ActiveXObject) {           
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   987
            ajax = new ActiveXObject("Microsoft.XMLHTTP");
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   988
          } else {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   989
            alert('Enano client-side runtime error: No AJAX support, unable to continue');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   990
            return;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   991
          }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   992
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   993
        ajax.onreadystatechange = f;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   994
        ajax.open('GET', uri, true);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   995
        ajax.send(null);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   996
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   997
      
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   998
      function ajaxPost(uri, parms, f) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   999
        if (window.XMLHttpRequest) {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1000
          ajax = new XMLHttpRequest();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1001
        } else {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1002
          if (window.ActiveXObject) {           
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1003
            ajax = new ActiveXObject("Microsoft.XMLHTTP");
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1004
          } else {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1005
            alert('Enano client-side runtime error: No AJAX support, unable to continue');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1006
            return;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1007
          }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1008
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1009
        ajax.onreadystatechange = f;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1010
        ajax.open('POST', uri, true);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1011
        ajax.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1012
        ajax.setRequestHeader("Content-length", parms.length);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1013
        ajax.setRequestHeader("Connection", "close");
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1014
        ajax.send(parms);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1015
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1016
      function ajaxTestConnection()
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1017
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1018
        v = verify();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1019
        if(!v)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1020
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1021
          alert('One or more of the form fields is incorrect. Please correct any information in the form that has an "X" next to it.');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1022
          return false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1023
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1024
        var frm = document.forms.dbinfo;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1025
        db_host      = escape(frm.db_host.value.replace('+', '%2B'));
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1026
        db_name      = escape(frm.db_name.value.replace('+', '%2B'));
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1027
        db_user      = escape(frm.db_user.value.replace('+', '%2B'));
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1028
        db_pass      = escape(frm.db_pass.value.replace('+', '%2B'));
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1029
        db_root_user = escape(frm.db_root_user.value.replace('+', '%2B'));
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1030
        db_root_pass = escape(frm.db_root_pass.value.replace('+', '%2B'));
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1031
        
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1032
        parms = 'host='+db_host+'&name='+db_name+'&user='+db_user+'&pass='+db_pass+'&root_user='+db_root_user+'&root_pass='+db_root_pass;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1033
        ajaxPost('<?php echo scriptPath; ?>/install.php?mode=mysql_test', parms, function() {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1034
            if(ajax.readyState==4)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1035
            {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1036
              s = ajax.responseText.substr(0, 4);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1037
              t = ajax.responseText.substr(4, ajax.responseText.length);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1038
              if(s.substr(0, 4)=='good')
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1039
              {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1040
                document.getElementById('s_db_host').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1041
                document.getElementById('s_db_name').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1042
                document.getElementById('s_db_auth').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1043
                document.getElementById('s_db_root').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1044
                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.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1045
                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.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1046
                document.getElementById('s_mysql_version').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1047
                document.getElementById('e_mysql_version').innerHTML = 'Your version of MySQL meets Enano requirements.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1048
              }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1049
              else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1050
              {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1051
                switch(s)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1052
                {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1053
                case 'host':
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1054
                  document.getElementById('s_db_host').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1055
                  document.getElementById('s_db_name').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1056
                  document.getElementById('s_db_auth').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1057
                  document.getElementById('s_db_root').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1058
                  document.getElementById('e_db_host').innerHTML = '<b>Error:<\/b> The database server "'+document.forms.dbinfo.db_host.value+'" couldn\'t be contacted.<br \/>'+t;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1059
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1060
                  break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1061
                case 'auth':
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1062
                  document.getElementById('s_db_host').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1063
                  document.getElementById('s_db_name').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1064
                  document.getElementById('s_db_auth').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1065
                  document.getElementById('s_db_root').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1066
                  document.getElementById('e_db_auth').innerHTML = '<b>Error:<\/b> Access to MySQL under the specified credentials was denied.<br \/>'+t;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1067
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1068
                  break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1069
                case 'perm':
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1070
                  document.getElementById('s_db_host').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1071
                  document.getElementById('s_db_name').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1072
                  document.getElementById('s_db_auth').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1073
                  document.getElementById('s_db_root').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1074
                  document.getElementById('e_db_name').innerHTML = '<b>Error:<\/b> Access to the specified database using those login credentials was denied.<br \/>'+t;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1075
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1076
                  break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1077
                case 'name':
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1078
                  document.getElementById('s_db_host').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1079
                  document.getElementById('s_db_name').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1080
                  document.getElementById('s_db_auth').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1081
                  document.getElementById('s_db_root').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1082
                  document.getElementById('e_db_name').innerHTML = '<b>Error:<\/b> The specified database does not exist<br \/>'+t;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1083
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1084
                  break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1085
                case 'root':
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1086
                  document.getElementById('s_db_host').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1087
                  document.getElementById('s_db_name').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1088
                  document.getElementById('s_db_auth').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1089
                  document.getElementById('s_db_root').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1090
                  document.getElementById('e_db_root').innerHTML = '<b>Error:<\/b> Access to MySQL under the specified credentials was denied.<br \/>'+t;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1091
                  document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1092
                  break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1093
                case 'vers':
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1094
                  document.getElementById('s_db_host').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1095
                  document.getElementById('s_db_name').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1096
                  document.getElementById('s_db_auth').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1097
                  document.getElementById('s_db_root').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1098
                  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.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1099
                  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.';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1100
                  
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1101
                  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().';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1102
                  document.getElementById('s_mysql_version').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1103
                default:
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1104
                  alert(t);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1105
                  break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1106
                }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1107
              }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1108
            }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1109
          });
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1110
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1111
      function verify()
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1112
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1113
        document.getElementById('e_db_host').innerHTML = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1114
        document.getElementById('e_db_auth').innerHTML = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1115
        document.getElementById('e_db_name').innerHTML = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1116
        document.getElementById('e_db_root').innerHTML = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1117
        var frm = document.forms.dbinfo;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1118
        ret = true;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1119
        if(frm.db_host.value != '')
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1120
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1121
          document.getElementById('s_db_host').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1122
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1123
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1124
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1125
          document.getElementById('s_db_host').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1126
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1127
        }
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1128
        if(frm.db_name.value.match(/^([a-z0-9_-]+)$/g))
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1129
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1130
          document.getElementById('s_db_name').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1131
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1132
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1133
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1134
          document.getElementById('s_db_name').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1135
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1136
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1137
        if(frm.db_user.value != '')
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1138
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1139
          document.getElementById('s_db_auth').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1140
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1141
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1142
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1143
          document.getElementById('s_db_auth').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1144
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1145
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1146
        if(frm.table_prefix.value.match(/^([a-z0-9_]*)$/g))
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1147
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1148
          document.getElementById('s_table_prefix').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1149
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1150
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1151
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1152
          document.getElementById('s_table_prefix').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1153
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1154
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1155
        if(frm.db_root_user.value == '')
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1156
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1157
          document.getElementById('s_db_root').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1158
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1159
        else if(frm.db_root_user.value != '' && frm.db_root_pass.value == '')
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1160
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1161
          document.getElementById('s_db_root').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1162
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1163
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1164
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1165
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1166
          document.getElementById('s_db_root').src='images/unknown.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1167
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1168
        if(ret) frm._cont.disabled = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1169
        else    frm._cont.disabled = true;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1170
        return ret;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1171
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1172
      window.onload = verify;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1173
    </script>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1174
    <p>Now we need some information that will allow Enano to contact your database server. Enano uses MySQL as a data storage backend,
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1175
       and we need to have access to a MySQL server in order to continue.</p>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1176
    <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
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1177
       <a href="http://www.mysql.com/">MySQL.com</a>. <b>Please note that, like Enano, MySQL is licensed under the GNU GPL.</b>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1178
       If you need to modify MySQL and then distribute your modifications, you must either distribute them under the terms of the GPL
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1179
       or purchase a proprietary license.</p>
140
40f7fa5fd061 Revamped the administrator's user CP, big time. The admin module now uses a smart form and enables all profile fields, including users_extra, to be changed. Passwords are encrypted when sent. The whole CP has been split off into a different file to accomodate the large amount of code.
Dan
parents: 129
diff changeset
  1180
    <?php
40f7fa5fd061 Revamped the administrator's user CP, big time. The admin module now uses a smart form and enables all profile fields, including users_extra, to be changed. Passwords are encrypted when sent. The whole CP has been split off into a different file to accomodate the large amount of code.
Dan
parents: 129
diff changeset
  1181
    if ( file_exists('/etc/enano-is-virt-appliance') )
40f7fa5fd061 Revamped the administrator's user CP, big time. The admin module now uses a smart form and enables all profile fields, including users_extra, to be changed. Passwords are encrypted when sent. The whole CP has been split off into a different file to accomodate the large amount of code.
Dan
parents: 129
diff changeset
  1182
    {
40f7fa5fd061 Revamped the administrator's user CP, big time. The admin module now uses a smart form and enables all profile fields, including users_extra, to be changed. Passwords are encrypted when sent. The whole CP has been split off into a different file to accomodate the large amount of code.
Dan
parents: 129
diff changeset
  1183
      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>';
40f7fa5fd061 Revamped the administrator's user CP, big time. The admin module now uses a smart form and enables all profile fields, including users_extra, to be changed. Passwords are encrypted when sent. The whole CP has been split off into a different file to accomodate the large amount of code.
Dan
parents: 129
diff changeset
  1184
    }
40f7fa5fd061 Revamped the administrator's user CP, big time. The admin module now uses a smart form and enables all profile fields, including users_extra, to be changed. Passwords are encrypted when sent. The whole CP has been split off into a different file to accomodate the large amount of code.
Dan
parents: 129
diff changeset
  1185
    ?>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1186
    <form name="dbinfo" action="install.php?mode=website" method="post">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1187
      <table border="0">
202
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1188
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1189
          <td colspan="3" style="text-align: center">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1190
            <h3>Database information</h3>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1191
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1192
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1193
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1194
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1195
            <b>Database hostname</b>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1196
            <br />This is the hostname (or sometimes the IP address) of your MySQL server. In many cases, this is "localhost".
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1197
            <br /><span style="color: #993300" id="e_db_host"></span>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1198
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1199
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1200
            <input onkeyup="verify();" name="db_host" size="30" type="text" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1201
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1202
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1203
            <img id="s_db_host" alt="Good/bad icon" src="images/bad.gif" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1204
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1205
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1206
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1207
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1208
            <b>Database name</b><br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1209
            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
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1210
            of a MySQL user with administrative rights.<br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1211
            <span style="color: #993300" id="e_db_name"></span>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1212
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1213
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1214
            <input onkeyup="verify();" name="db_name" size="30" type="text" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1215
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1216
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1217
            <img id="s_db_name" alt="Good/bad icon" src="images/bad.gif" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1218
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1219
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1220
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1221
          <td rowspan="2">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1222
            <b>Database login</b><br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1223
            These fields should be the username and password of a user with "select", "insert", "update", "delete", "create table", and "replace"
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1224
            privileges for your database.<br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1225
            <span style="color: #993300" id="e_db_auth"></span>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1226
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1227
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1228
            <input onkeyup="verify();" name="db_user" size="30" type="text" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1229
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1230
          <td rowspan="2">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1231
            <img id="s_db_auth" alt="Good/bad icon" src="images/bad.gif" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1232
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1233
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1234
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1235
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1236
            <input name="db_pass" size="30" type="password" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1237
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1238
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1239
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1240
          <td colspan="3" style="text-align: center">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1241
            <h3>Optional information</h3>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1242
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1243
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1244
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1245
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1246
            <b>Table prefix</b><br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1247
            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),
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1248
            numbers (0-9), and underscores (_).
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1249
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1250
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1251
            <input onkeyup="verify();" name="table_prefix" size="30" type="text" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1252
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1253
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1254
            <img id="s_table_prefix" alt="Good/bad icon" src="images/good.gif" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1255
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1256
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1257
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1258
          <td rowspan="2">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1259
            <b>Database administrative login</b><br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1260
            If the MySQL database or username that you entered above does not exist yet, you can create them here, assuming that you have the
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1261
            login information for an administrative user (such as root). Leave these fields blank unless you need to use them.<br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1262
            <span style="color: #993300" id="e_db_root"></span>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1263
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1264
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1265
            <input onkeyup="verify();" name="db_root_user" size="30" type="text" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1266
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1267
          <td rowspan="2">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1268
            <img id="s_db_root" alt="Good/bad icon" src="images/good.gif" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1269
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1270
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1271
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1272
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1273
            <input onkeyup="verify();" name="db_root_pass" size="30" type="password" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1274
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1275
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1276
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1277
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1278
            <b>MySQL version</b>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1279
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1280
          <td id="e_mysql_version">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1281
            MySQL version information will be checked when you click "Test Connection".
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1282
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1283
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1284
            <img id="s_mysql_version" alt="Good/bad icon" src="images/unknown.gif" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1285
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1286
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1287
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1288
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1289
            <b>Delete existing tables?</b><br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1290
            If this option is checked, all the tables that will be used by Enano will be dropped (deleted) before the schema is executed. Do
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1291
            NOT use this option unless specifically instructed to.
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1292
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1293
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1294
            <input type="checkbox" name="drop_tables" id="dtcheck" />  <label for="dtcheck">Drop existing tables</label>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1295
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1296
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1297
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1298
          <td colspan="3" style="text-align: center">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1299
            <input type="button" value="Test connection" onclick="ajaxTestConnection();" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1300
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1301
        </tr>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1302
      </table>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1303
      <div class="pagenav">
202
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1304
        <table border="0">
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1305
        <tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1306
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1307
            <input type="submit" value="Continue" onclick="return verify();" name="_cont" />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1308
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1309
          <td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1310
            <p>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1311
              <span style="font-weight: bold;">Before continuing:</span><br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1312
              &bull; Check your MySQL connection using the "Test Connection" button.<br />
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1313
              &bull; Be aware that your database information will be transmitted unencrypted several times.
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1314
            </p>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1315
          </td>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1316
        </tr>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1317
        </table>
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 201
diff changeset
  1318
      </div>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1319
    </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1320
    <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1321
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1322
  case "website":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1323
    if(!isset($_POST['_cont'])) {
195
3daa715e0f69 Alternate scaling using GD is implemented now; images will be scaled with ImageMagick if enabled and working; else, GD will be used. No UI changes to speak of, but a check in the installer will be added in a later commit
Dan
parents: 186
diff changeset
  1324
      echo 'No POST data signature found. Please <a href="install.php?mode=sysreqs">restart the installation</a>.';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1325
      $template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1326
      exit;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1327
    }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1328
    unset($_POST['_cont']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1329
    ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1330
    <script type="text/javascript">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1331
      function verify()
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1332
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1333
        var frm = document.forms.siteinfo;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1334
        ret = true;
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1335
        if(frm.sitename.value.match(/^(.+)$/g) && frm.sitename.value != 'Enano')
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1336
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1337
          document.getElementById('s_name').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1338
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1339
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1340
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1341
          document.getElementById('s_name').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1342
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1343
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1344
        if(frm.sitedesc.value.match(/^(.+)$/g))
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1345
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1346
          document.getElementById('s_desc').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1347
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1348
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1349
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1350
          document.getElementById('s_desc').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1351
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1352
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1353
        if(frm.copyright.value.match(/^(.+)$/g))
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1354
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1355
          document.getElementById('s_copyright').src='images/good.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1356
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1357
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1358
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1359
          document.getElementById('s_copyright').src='images/bad.gif';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1360
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1361
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1362
        if(ret) frm._cont.disabled = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1363
        else    frm._cont.disabled = true;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1364
        return ret;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1365
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1366
      window.onload = verify;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1367
    </script>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1368
    <form name="siteinfo" action="install.php?mode=login" method="post">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1369
      <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1370
        $k = array_keys($_POST);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1371
        for($i=0;$i<sizeof($_POST);$i++) {
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1372
          echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1373
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1374
      ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1375
      <p>The next step is to enter some information about your website. You can always change this information later, using the administration panel.</p>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1376
      <table border="0">
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1377
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1378
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1379
            <b>Website name</b><br />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1380
            The display name of your website. Allowed characters are uppercase and lowercase letters, numerals, and spaces. This must not
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1381
            be blank or "Enano".
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1382
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1383
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1384
            <input onkeyup="verify();" name="sitename" type="text" size="30" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1385
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1386
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1387
            <img id="s_name" alt="Good/bad icon" src="images/bad.gif" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1388
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1389
        </tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1390
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1391
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1392
            <b>Website description</b><br />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1393
            This text will be shown below the name of your website.
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1394
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1395
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1396
            <input onkeyup="verify();" name="sitedesc" type="text" size="30" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1397
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1398
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1399
            <img id="s_desc" alt="Good/bad icon" src="images/bad.gif" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1400
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1401
        </tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1402
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1403
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1404
            <b>Copyright info</b><br />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1405
            This should be a one-line legal notice that will appear at the bottom of all your pages.
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1406
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1407
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1408
            <input onkeyup="verify();" name="copyright" type="text" size="30" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1409
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1410
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1411
            <img id="s_copyright" alt="Good/bad icon" src="images/bad.gif" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1412
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1413
        </tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1414
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1415
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1416
            <b>Wiki mode</b><br />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1417
            This feature allows people to create and edit pages on your site. Enano keeps a history of all page modifications, and you can
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1418
            protect pages to prevent editing.
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1419
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1420
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1421
            <input name="wiki_mode" type="checkbox" id="wmcheck" />  <label for="wmcheck">Yes, make my website a wiki.</label>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1422
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1423
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1424
            &nbsp;
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1425
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1426
        </tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1427
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1428
          <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1429
            <b>URL scheme</b><br />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1430
            Choose how the page URLs will look. Depending on your server configuration, you may need to select the first option. If you
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1431
            don't know, select the first option, and you can always change it later.
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1432
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1433
          <td colspan="2">
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1434
            <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 />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1435
            <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 />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1436
            <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>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1437
          </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1438
        </tr>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1439
      </table>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1440
      <div class="pagenav">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1441
       <table border="0">
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1442
         <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1443
           <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1444
             <input type="submit" value="Continue" onclick="return verify();" name="_cont" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1445
           </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1446
           <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1447
             <p>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1448
               <span style="font-weight: bold;">Before clicking continue:</span><br />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1449
               &bull; Verify that your site information is correct. Again, all of the above settings can be changed from the administration
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1450
                      panel.
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1451
             </p>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1452
           </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1453
         </tr>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1454
       </table>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1455
     </div>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1456
    </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1457
    <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1458
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1459
  case "login":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1460
    if(!isset($_POST['_cont'])) {
195
3daa715e0f69 Alternate scaling using GD is implemented now; images will be scaled with ImageMagick if enabled and working; else, GD will be used. No UI changes to speak of, but a check in the installer will be added in a later commit
Dan
parents: 186
diff changeset
  1461
      echo 'No POST data signature found. Please <a href="install.php?mode=sysreqs">restart the installation</a>.';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1462
      $template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1463
      exit;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1464
    }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1465
    unset($_POST['_cont']);
198
d5dff8148dfe Renaming config.php and .htaccess to *.new to allow tarbombing an Enano installation with no adverse effects; first attempt, may not work right.
Dan
parents: 197
diff changeset
  1466
    require('config.new.php');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1467
    $aes = new AESCrypt(AES_BITS, AES_BLOCKSIZE);
12
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
  1468
    if ( isset($crypto_key) )
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
  1469
    {
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
  1470
      $cryptkey = $crypto_key;
c96a9b56f16c Fixed problems with installer and config file (chdir and error-connecting-to-MySQL issues)
Dan
parents: 11
diff changeset
  1471
    }
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1472
    if(!isset($cryptkey) || ( isset($cryptkey) && strlen($cryptkey) != AES_BITS / 4) )
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1473
    {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1474
      $cryptkey = $aes->gen_readymade_key();
198
d5dff8148dfe Renaming config.php and .htaccess to *.new to allow tarbombing an Enano installation with no adverse effects; first attempt, may not work right.
Dan
parents: 197
diff changeset
  1475
      $handle = @fopen(ENANO_ROOT.'/config.new.php', 'w');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1476
      if(!$handle)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1477
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1478
        echo '<p>ERROR: Cannot open config.php for writing - exiting!</p>';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1479
        $template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1480
        exit;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1481
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1482
      fwrite($handle, '<?php $cryptkey = \''.$cryptkey.'\'; ?>');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1483
      fclose($handle);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1484
    }
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1485
    // Sorry for the ugly hack, but this f***s up jEdit badly.
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1486
    echo '
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1487
    <script type="text/javascript">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1488
      function verify()
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1489
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1490
        var frm = document.forms.login;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1491
        ret = true;
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1492
        if ( frm.admin_user.value.match(/^([A-z0-9 \\-\\.]+)$/) && !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\' )
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1493
        {
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1494
          document.getElementById(\'s_user\').src = \'images/good.gif\';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1495
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1496
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1497
        {
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1498
          document.getElementById(\'s_user\').src = \'images/bad.gif\';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1499
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1500
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1501
        if(frm.admin_pass.value.length >= 6 && frm.admin_pass.value == frm.admin_pass_confirm.value)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1502
        {
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1503
          document.getElementById(\'s_password\').src = \'images/good.gif\';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1504
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1505
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1506
        {
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1507
          document.getElementById(\'s_password\').src = \'images/bad.gif\';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1508
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1509
        }
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1510
        if(frm.admin_email.value.match(/^(?:[\\w\\d]+\\.?)+@(?:(?:[\\w\\d]\\-?)+\\.)+\\w{2,4}$/))
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1511
        {
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1512
          document.getElementById(\'s_email\').src = \'images/good.gif\';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1513
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1514
        else
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1515
        {
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1516
          document.getElementById(\'s_email\').src = \'images/bad.gif\';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1517
          ret = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1518
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1519
        if(ret) frm._cont.disabled = false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1520
        else    frm._cont.disabled = true;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1521
        return ret;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1522
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1523
      window.onload = verify;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1524
      
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1525
      function cryptdata() 
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1526
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1527
        if(!verify()) return false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1528
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1529
    </script>
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1530
    ';
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1531
    ?>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1532
    <form name="login" action="install.php?mode=confirm" method="post" onsubmit="runEncryption();">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1533
      <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1534
        $k = array_keys($_POST);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1535
        for($i=0;$i<sizeof($_POST);$i++) {
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1536
          echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1537
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1538
      ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1539
      <p>Next, enter your desired username and password. The account you create here will be used to administer your site.</p>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1540
      <table border="0">
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1541
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1542
          <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>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1543
        </tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1544
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1545
          <td>Administration password:</td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1546
          <td><input onkeyup="verify();" name="admin_pass" type="password" size="30" /></td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1547
          <td rowspan="2"><img id="s_password" alt="Good/bad icon" src="images/bad.gif" /></td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1548
        </tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1549
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1550
          <td>Enter it again to confirm:</td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1551
          <td><input onkeyup="verify();" name="admin_pass_confirm" type="password" size="30" /></td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1552
        </tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1553
        <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1554
          <td>Your e-mail address:</td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1555
          <td><input onkeyup="verify();" name="admin_email" type="text" size="30" /></td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1556
          <td><img id="s_email" alt="Good/bad icon" src="images/bad.gif" /></td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1557
        </tr>
11
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1558
        <tr>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1559
          <td>
80
cb7dde69c301 Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents: 73
diff changeset
  1560
            Allow administrators to embed PHP code into pages:<br />
11
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1561
            <small><span style="color: #D84308">Do not under any circumstances enable this option without reading these
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1562
                   <a href="install.php?mode=pophelp&amp;topic=admin_embed_php"
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1563
                      onclick="window.open(this.href, 'pophelpwin', 'width=550,height=400,status=no,toolbars=no,toolbar=no,address=no,scroll=yes'); return false;"
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1564
                      style="color: #D84308; text-decoration: underline;">important security implications</a>.
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1565
            </span></small>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1566
          </td>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1567
          <td>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1568
            <label><input type="radio" name="admin_embed_php" value="2" checked="checked" /> Disabled</label>&nbsp;&nbsp;
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1569
            <label><input type="radio" name="admin_embed_php" value="4" /> Enabled</label>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1570
          </td>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1571
          <td></td>
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1572
        </tr>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1573
        <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1574
      </table>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1575
      <div class="pagenav">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1576
       <table border="0">
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1577
         <tr>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1578
           <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1579
             <input type="submit" value="Continue" onclick="return cryptdata();" name="_cont" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1580
           </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1581
           <td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1582
             <p>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1583
               <span style="font-weight: bold;">Before clicking continue:</span><br />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1584
               &bull; Remember the username and password you enter here! You will not be able to administer your site without the
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1585
               information you enter on this page.
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1586
             </p>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1587
           </td>
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1588
         </tr>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1589
       </table>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1590
      </div>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1591
      <div id="cryptdebug"></div>
203
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1592
      <input type="hidden" name="use_crypt" value="no" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1593
      <input type="hidden" name="crypt_key" value="<?php echo $cryptkey; ?>" />
acb9d021b860 Database name can now contain dashes (as per requested at http://forum.enanocms.org/viewtopic.php?f=5&t=14); corrected some installer behavior issues with connecting as root and setting up permissions resulting in logs not being flushed, configs not being inserted, and what have you.
Dan
parents: 202
diff changeset
  1594
      <input type="hidden" name="crypt_data" value="" />
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1595
    </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1596
    <script type="text/javascript">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1597
    // <![CDATA[
197
cc358458a012 "Fix" e-mail parse bugs in installer
Dan
parents: 195
diff changeset
  1598
      var frm = document.forms.login;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1599
      frm.admin_user.focus();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1600
      function runEncryption()
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1601
      {
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1602
        str = '';
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1603
        for(i=0;i<keySizeInBits/4;i++) str+='0';
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1604
        var key = hexToByteArray(str);
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1605
        var pt = hexToByteArray(str);
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1606
        var ct = rijndaelEncrypt(pt, key, "ECB");
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1607
        var ect = byteArrayToHex(ct);
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1608
        switch(keySizeInBits)
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1609
        {
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1610
          case 128:
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1611
            v = '66e94bd4ef8a2c3b884cfa59ca342b2e';
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1612
            break;
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1613
          case 192:
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1614
            v = 'aae06992acbf52a3e8f4a96ec9300bd7aae06992acbf52a3e8f4a96ec9300bd7';
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1615
            break;
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1616
          case 256:
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1617
            v = 'dc95c078a2408989ad48a21492842087dc95c078a2408989ad48a21492842087';
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1618
            break;
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1619
        }
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1620
        var testpassed = ( ect == v && md5_vm_test() );
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1621
        var frm = document.forms.login;
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1622
        if(testpassed)
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1623
        {
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1624
          // alert('encryption self-test passed');
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1625
          frm.use_crypt.value = 'yes';
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1626
          var cryptkey = frm.crypt_key.value;
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1627
          frm.crypt_key.value = '';
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1628
          if(cryptkey != byteArrayToHex(hexToByteArray(cryptkey)))
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1629
          {
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1630
            alert('Byte array conversion SUCKS');
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1631
            testpassed = false;
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1632
          }
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1633
          cryptkey = hexToByteArray(cryptkey);
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1634
          if(!cryptkey || ( ( typeof cryptkey == 'string' || typeof cryptkey == 'object' ) ) && cryptkey.length != keySizeInBits / 8 )
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1635
          {
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1636
            frm._cont.disabled = true;
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1637
            len = ( typeof cryptkey == 'string' || typeof cryptkey == 'object' ) ? '\nLen: '+cryptkey.length : '';
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1638
            alert('The key is messed up\nType: '+typeof(cryptkey)+len);
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1639
          }
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1640
        }
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1641
        else
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1642
        {
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1643
          // alert('encryption self-test FAILED');
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1644
        }
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1645
        if(testpassed)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1646
        {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1647
          pass = frm.admin_pass.value;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1648
          pass = stringToByteArray(pass);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1649
          cryptstring = rijndaelEncrypt(pass, cryptkey, 'ECB');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1650
          //decrypted = rijndaelDecrypt(cryptstring, cryptkey, 'ECB');
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1651
          //decrypted = byteArrayToString(decrypted);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1652
          //return false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1653
          if(!cryptstring)
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1654
          {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1655
            return false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1656
          }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1657
          cryptstring = byteArrayToHex(cryptstring);
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1658
          // document.getElementById('cryptdebug').innerHTML = '<pre>Data: '+cryptstring+'<br />Key:  '+byteArrayToHex(cryptkey)+'</pre>';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1659
          frm.crypt_data.value = cryptstring;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1660
          frm.admin_pass.value = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1661
          frm.admin_pass_confirm.value = '';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1662
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1663
        return false;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1664
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1665
      // ]]>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1666
    </script>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1667
    <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1668
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1669
  case "confirm":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1670
    if(!isset($_POST['_cont'])) {
195
3daa715e0f69 Alternate scaling using GD is implemented now; images will be scaled with ImageMagick if enabled and working; else, GD will be used. No UI changes to speak of, but a check in the installer will be added in a later commit
Dan
parents: 186
diff changeset
  1671
      echo 'No POST data signature found. Please <a href="install.php?mode=sysreqs">restart the installation</a>.';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1672
      $template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1673
      exit;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1674
    }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1675
    unset($_POST['_cont']);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1676
    ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1677
    <form name="confirm" action="install.php?mode=install" method="post">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1678
      <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1679
        $k = array_keys($_POST);
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1680
        for($i=0;$i<sizeof($_POST);$i++) {
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1681
          echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1682
        }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1683
      ?>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1684
      <h3>Enano is ready to install.</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1685
       <p>The wizard has finished collecting information and is ready to install the database schema. Please review the information below,
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1686
          and then click the button below to install the database.</p>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1687
      <ul>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1688
        <li>Database hostname: <?php echo $_POST['db_host']; ?></li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1689
        <li>Database name: <?php echo $_POST['db_name']; ?></li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1690
        <li>Database user: <?php echo $_POST['db_user']; ?></li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1691
        <li>Database password: &lt;hidden&gt;</li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1692
        <li>Site name: <?php echo $_POST['sitename']; ?></li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1693
        <li>Site description: <?php echo $_POST['sitedesc']; ?></li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1694
        <li>Administration username: <?php echo $_POST['admin_user']; ?></li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1695
        <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1696
      </ul>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1697
      <div class="pagenav">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1698
        <table border="0">
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1699
          <tr>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1700
            <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1701
          </tr>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1702
        </table>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1703
      </div>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1704
    </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1705
    <?php
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1706
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1707
  case "install":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1708
    if(!isset($_POST['db_host']) ||
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1709
       !isset($_POST['db_name']) ||
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1710
       !isset($_POST['db_user']) ||
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1711
       !isset($_POST['db_pass']) ||
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1712
       !isset($_POST['sitename']) ||
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1713
       !isset($_POST['sitedesc']) ||
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1714
       !isset($_POST['copyright']) ||
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1715
       !isset($_POST['admin_user']) ||
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1716
       !isset($_POST['admin_pass']) ||
11
ccad6026a168 Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
parents: 10
diff changeset
  1717
       !isset($_POST['admin_embed_php']) || ( isset($_POST['admin_embed_php']) && !in_array($_POST['admin_embed_php'], array('2', '4')) ) ||
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1718
       !isset($_POST['urlscheme'])
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1719
       )
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1720
    {
195
3daa715e0f69 Alternate scaling using GD is implemented now; images will be scaled with ImageMagick if enabled and working; else, GD will be used. No UI changes to speak of, but a check in the installer will be added in a later commit
Dan
parents: 186
diff changeset
  1721
      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>.';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1722
      $template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1723
      exit;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1724
    }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1725
    switch($_POST['urlscheme'])
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1726
    {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1727
      case "ugly":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1728
      default:
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1729
        $cp = scriptPath.'/index.php?title=';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1730
        break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1731
      case "short":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1732
        $cp = scriptPath.'/index.php/';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1733
        break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1734
      case "tiny":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1735
        $cp = scriptPath.'/';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1736
        break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1737
    }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1738
    function err($t) { global $template; echo $t; $template->footer(); exit; }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1739
    
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1740
    // $stages = array('connect', 'decrypt', 'genkey', 'parse', 'sql', 'writeconfig', 'renameconfig', 'startapi', 'initlogs');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1741
    
195
3daa715e0f69 Alternate scaling using GD is implemented now; images will be scaled with ImageMagick if enabled and working; else, GD will be used. No UI changes to speak of, but a check in the installer will be added in a later commit
Dan
parents: 186
diff changeset
  1742
    if ( !preg_match('/^[a-z0-9_]*$/', $_POST['table_prefix']) )
3daa715e0f69 Alternate scaling using GD is implemented now; images will be scaled with ImageMagick if enabled and working; else, GD will be used. No UI changes to speak of, but a check in the installer will be added in a later commit
Dan
parents: 186
diff changeset
  1743
      err('Hacking attempt was detected in table_prefix.');
3daa715e0f69 Alternate scaling using GD is implemented now; images will be scaled with ImageMagick if enabled and working; else, GD will be used. No UI changes to speak of, but a check in the installer will be added in a later commit
Dan
parents: 186
diff changeset
  1744
    
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1745
      start_install_table();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1746
      // The stages connect, decrypt, genkey, and parse are preprocessing and don't do any actual data modification.
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1747
      // Thus, they need to be run on each retry, e.g. never skipped.
201
c26308d81882 Fix installation with MySQL root option
Dan
parents: 200
diff changeset
  1748
      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);
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1749
      if ( isset($_POST['drop_tables']) )
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1750
      {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1751
        // Are we supposed to drop any existing tables? If so, do it now
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1752
        run_installer_stage('drop', 'Drop existing Enano tables', 'stg_drop_tables', 'This step never returns failure');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1753
      }
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1754
      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);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1755
      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);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1756
      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);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1757
      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);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1758
      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.');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1759
      run_installer_stage('renameconfig', 'Rename configuration files', 'stg_rename_config', 'Enano couldn\'t rename the configuration files to their correct production names. On some UNIX systems, you need to CHMOD the directory with your Enano files to 777 in order for this stage to succeed.');
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1760
      
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1761
      // Mainstream installation complete - Enano should be usable now
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1762
      // The stage of starting the API is special because it has to be called out of function context.
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1763
      // To alleviate this, we have two functions, one that returns success and one that returns failure
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1764
      // If the Enano API load is successful, the success function is called to report the action to the user
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1765
      // If unsuccessful, the failure report is sent
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1766
      
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1767
      $template_bak = $template;
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1768
      
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1769
      $_GET['title'] = 'Main_Page';
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1770
      require('includes/common.php');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1771
      
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1772
      if ( is_object($db) && is_object($session) )
40
723bb7acf914 Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents: 39
diff changeset
  1773
      {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1774
        run_installer_stage('startapi', 'Start the Enano API', 'stg_start_api_success', '...', false);
27
dd659f6ba891 Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
parents: 21
diff changeset
  1775
      }
dd659f6ba891 Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
parents: 21
diff changeset
  1776
      else
dd659f6ba891 Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
parents: 21
diff changeset
  1777
      {
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1778
        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);
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1779
      }
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1780
      
32
4d87aad3c4c0 Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents: 27
diff changeset
  1781
      // We need to be logged in (with admin rights) before logs can be flushed
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1782
      $admin_password = stg_decrypt_admin_pass(true);
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1783
      $session->login_without_crypto($_POST['admin_user'], $admin_password, false);
32
4d87aad3c4c0 Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents: 27
diff changeset
  1784
      
4d87aad3c4c0 Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents: 27
diff changeset
  1785
      // Now that login cookies are set, initialize the session manager and ACLs
4d87aad3c4c0 Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents: 27
diff changeset
  1786
      $session->start();
4d87aad3c4c0 Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents: 27
diff changeset
  1787
      $paths->init();
4d87aad3c4c0 Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents: 27
diff changeset
  1788
      
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1789
      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 />
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1790
                           While under most circumstances you can still <a href="install.php?mode=finish">finish the installation</a>, you should be aware that some servers cannot
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1791
                           properly set cookies due to limitations with PHP. These limitations are exposed primarily when this issue is encountered during installation. If you choose
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1792
                           to finish the installation, please be aware that you may be unable to log into your site.');
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1793
      close_install_table();
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1794
      
32
4d87aad3c4c0 Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents: 27
diff changeset
  1795
      unset($template);
4d87aad3c4c0 Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents: 27
diff changeset
  1796
      $template =& $template_bak;
200
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1797
    
07cf7b0c175f Out with the old, in with the new. Welcome to Enano's new installer framework!
Dan
parents: 199
diff changeset
  1798
      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>.';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1799
      
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1800
      // echo '<script type="text/javascript">window.location="'.scriptPath.'/install.php?mode=finish";</script>';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1801
      
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1802
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1803
  case "finish":
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1804
    echo '<h3>Congratulations!</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1805
           <p>You have finished installing Enano on this server.</p>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1806
          <h3>Now what?</h3>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1807
           <p>Click the link below to see the main page for your website. Where to go from here:</p>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1808
           <ul>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1809
             <li>The first thing you should do is log into your site using the Log in link on the sidebar.</li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1810
             <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1811
             <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1812
             <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1813
             <li>Hire some moderators, to help you keep rowdy users tame.</li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1814
             <li>Tell the <a href="http://enanocms.org/Contact_us">Enano team</a> what you think.</li>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1815
             <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>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1816
           </ul>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1817
           <p><a href="index.php">Go to your website...</a></p>';
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1818
    break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1819
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1820
$template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1821
 
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
  1822
?>