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