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