0
+ − 1
<?php
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
diff
changeset
+ − 2
0
+ − 3
/*
+ − 4
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
diff
changeset
+ − 5
* Version 1.0.1 (Loch Ness)
0
+ − 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
11
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 16
@include('config.php');
0
+ − 17
if( ( defined('ENANO_INSTALLED') || defined('MIDGET_INSTALLED') ) && ((isset($_GET['mode']) && ($_GET['mode']!='finish' && $_GET['mode']!='css')) || !isset($_GET['mode']))) {
+ − 18
$_GET['title'] = 'Enano:WhoCaresWhatThisIs';
+ − 19
require('includes/common.php');
+ − 20
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>');
+ − 21
exit;
+ − 22
}
+ − 23
+ − 24
define('IN_ENANO_INSTALL', 'true');
+ − 25
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
diff
changeset
+ − 26
define('ENANO_VERSION', '1.0.1');
0
+ − 27
// In beta versions, define ENANO_BETA_VERSION here
+ − 28
+ − 29
if(!defined('scriptPath')) {
+ − 30
$sp = dirname($_SERVER['REQUEST_URI']);
+ − 31
if($sp == '/' || $sp == '\\') $sp = '';
+ − 32
define('scriptPath', $sp);
+ − 33
}
+ − 34
+ − 35
if(!defined('contentPath')) {
+ − 36
$sp = dirname($_SERVER['REQUEST_URI']);
+ − 37
if($sp == '/' || $sp == '\\') $sp = '';
+ − 38
define('contentPath', $sp);
+ − 39
}
+ − 40
global $_starttime, $this_page, $sideinfo;
+ − 41
$_starttime = microtime(true);
+ − 42
12
+ − 43
// Determine directory (special case for development servers)
+ − 44
if ( strpos(__FILE__, '/repo/') && file_exists('.enanodev') )
+ − 45
{
+ − 46
$filename = str_replace('/repo/', '/', __FILE__);
+ − 47
}
+ − 48
else
+ − 49
{
+ − 50
$filename = __FILE__;
+ − 51
}
+ − 52
+ − 53
define('ENANO_ROOT', dirname($filename));
0
+ − 54
13
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 55
function is_page($p)
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 56
{
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 57
return true;
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 58
}
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 59
0
+ − 60
require('includes/wikiformat.php');
+ − 61
require('includes/constants.php');
+ − 62
require('includes/rijndael.php');
+ − 63
require('includes/functions.php');
+ − 64
40
+ − 65
strip_magic_quotes_gpc();
+ − 66
0
+ − 67
//die('Key size: ' . AES_BITS . '<br />Block size: ' . AES_BLOCKSIZE);
+ − 68
13
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 69
if(!function_exists('wikiFormat'))
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 70
{
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 71
function wikiFormat($message, $filter_links = true)
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 72
{
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 73
$wiki = & Text_Wiki::singleton('Mediawiki');
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 74
$wiki->setRenderConf('Xhtml', 'code', 'css_filename', 'codefilename');
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 75
$wiki->setRenderConf('Xhtml', 'wikilink', 'view_url', contentPath);
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 76
$result = $wiki->transform($message, 'Xhtml');
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 77
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 78
// HTML fixes
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 79
$result = preg_replace('#<tr>([\s]*?)<\/tr>#is', '', $result);
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 80
$result = preg_replace('#<p>([\s]*?)<\/p>#is', '', $result);
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 81
$result = preg_replace('#<br />([\s]*?)<table#is', '<table', $result);
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 82
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 83
return $result;
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 84
}
0
+ − 85
}
+ − 86
+ − 87
global $failed, $warned;
13
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 88
0
+ − 89
$failed = false;
+ − 90
$warned = false;
13
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 91
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 92
function not($var)
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 93
{
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 94
if($var)
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 95
{
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 96
return false;
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 97
}
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 98
else
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 99
{
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 100
return true;
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 101
}
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 102
}
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 103
0
+ − 104
function run_test($code, $desc, $extended_desc, $warn = false)
+ − 105
{
+ − 106
global $failed, $warned;
+ − 107
static $cv = true;
+ − 108
$cv = not($cv);
+ − 109
$val = eval($code);
+ − 110
if($val)
+ − 111
{
+ − 112
if($cv) $color='CCFFCC'; else $color='AAFFAA';
+ − 113
echo "<tr><td style='background-color: #$color; width: 500px;'>$desc</td><td style='padding-left: 10px;'><img alt='Test passed' src='images/good.gif' /></td></tr>";
+ − 114
} elseif(!$val && $warn) {
+ − 115
if($cv) $color='FFFFCC'; else $color='FFFFAA';
+ − 116
echo "<tr><td style='background-color: #$color; width: 500px;'>$desc<br /><b>$extended_desc</b></td><td style='padding-left: 10px;'><img alt='Test passed with warning' src='images/unknown.gif' /></td></tr>";
+ − 117
$warned = true;
+ − 118
} else {
+ − 119
if($cv) $color='FFCCCC'; else $color='FFAAAA';
+ − 120
echo "<tr><td style='background-color: #$color; width: 500px;'>$desc<br /><b>$extended_desc</b></td><td style='padding-left: 10px;'><img alt='Test failed' src='images/bad.gif' /></td></tr>";
+ − 121
$failed = true;
+ − 122
}
+ − 123
}
+ − 124
function is_apache() { $r = strstr($_SERVER['SERVER_SOFTWARE'], 'Apache') ? true : false; return $r; }
+ − 125
+ − 126
require_once('includes/template.php');
+ − 127
+ − 128
if(!isset($_GET['mode'])) $_GET['mode'] = 'welcome';
+ − 129
switch($_GET['mode'])
+ − 130
{
+ − 131
case 'mysql_test':
+ − 132
error_reporting(0);
+ − 133
$dbhost = rawurldecode($_POST['host']);
+ − 134
$dbname = rawurldecode($_POST['name']);
+ − 135
$dbuser = rawurldecode($_POST['user']);
+ − 136
$dbpass = rawurldecode($_POST['pass']);
+ − 137
$dbrootuser = rawurldecode($_POST['root_user']);
+ − 138
$dbrootpass = rawurldecode($_POST['root_pass']);
+ − 139
if($dbrootuser != '')
+ − 140
{
+ − 141
$conn = mysql_connect($dbhost, $dbrootuser, $dbrootpass);
+ − 142
if(!$conn)
+ − 143
{
+ − 144
$e = mysql_error();
+ − 145
if(strstr($e, "Lost connection"))
+ − 146
die('host'.$e);
+ − 147
else
+ − 148
die('root'.$e);
+ − 149
}
+ − 150
$rsp = 'good';
+ − 151
$q = mysql_query('USE '.$dbname, $conn);
+ − 152
if(!$q)
+ − 153
{
+ − 154
$e = mysql_error();
+ − 155
if(strstr($e, 'Unknown database'))
+ − 156
{
+ − 157
$rsp .= '_creating_db';
+ − 158
}
+ − 159
}
+ − 160
mysql_close($conn);
+ − 161
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
+ − 162
if(!$conn)
+ − 163
{
+ − 164
$e = mysql_error();
+ − 165
if(strstr($e, "Lost connection"))
+ − 166
die('host'.$e);
+ − 167
else
+ − 168
$rsp .= '_creating_user';
+ − 169
}
+ − 170
mysql_close($conn);
+ − 171
die($rsp);
+ − 172
}
+ − 173
else
+ − 174
{
+ − 175
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
+ − 176
if(!$conn)
+ − 177
{
+ − 178
$e = mysql_error();
+ − 179
if(strstr($e, "Lost connection"))
+ − 180
die('host'.$e);
+ − 181
else
+ − 182
die('auth'.$e);
+ − 183
}
+ − 184
$q = mysql_query('USE '.$dbname, $conn);
+ − 185
if(!$q)
+ − 186
{
+ − 187
$e = mysql_error();
+ − 188
if(strstr($e, 'Unknown database'))
+ − 189
{
+ − 190
die('name'.$e);
+ − 191
}
+ − 192
else
+ − 193
{
+ − 194
die('perm'.$e);
+ − 195
}
+ − 196
}
+ − 197
}
+ − 198
$v = mysql_get_server_info();
+ − 199
if(version_compare($v, '4.1.17', '<')) die('vers'.$v);
+ − 200
mysql_close($conn);
+ − 201
die('good');
+ − 202
break;
11
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 203
case 'pophelp':
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 204
$topic = ( isset($_GET['topic']) ) ? $_GET['topic'] : 'invalid';
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 205
switch($topic)
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 206
{
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 207
case 'admin_embed_php':
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 208
$title = 'Allow administrators to embed PHP';
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 209
$content = '<p>This option allows you to control whether anything between the standard <?php and ?> tags will be treated as
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 210
PHP code by Enano. If this option is enabled, and members of the Administrators group use these tags, Enano will
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 211
execute that code when the page is loaded. There are obvious potential security implications here, which should
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 212
be carefully considered before enabling this option.</p>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 213
<p>If you are the only administrator of this site, or if you have a high level of trust for those will be administering
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 214
the site with you, you should enable this to allow extreme customization of pages.</p>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 215
<p>Leave this option off if you are at all concerned about security – if your account is compromised and PHP embedding
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 216
is enabled, an attacker can run arbitrary code on your server! Enabling this will also allow administrators to
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 217
embed Javascript and arbitrary HTML and CSS.</p>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 218
<p>If you don\'t have experience coding in PHP, you can safely disable this option. You may change this at any time
98
6457a9b983c6
Fixed non-object reference in databaseless template, added locking for Javascript paginator, made comments on AES key size more clear in constants, and disallowed "anonymous" and IP addresses for admin username in install.php; Loch Ness release candidate
Dan
diff
changeset
+ − 219
using the ACL editor by selecting the Administrators group and This Entire Website under the scope selection. <!-- , or by
6457a9b983c6
Fixed non-object reference in databaseless template, added locking for Javascript paginator, made comments on AES key size more clear in constants, and disallowed "anonymous" and IP addresses for admin username in install.php; Loch Ness release candidate
Dan
diff
changeset
+ − 220
using the "embedded PHP kill switch" in the administration panel. --></p>';
11
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 221
break;
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 222
default:
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 223
$title = 'Invalid topic';
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 224
$content = 'Invalid help topic.';
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 225
break;
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 226
}
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 227
echo <<<EOF
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 228
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 229
<html>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 230
<head>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 231
<title>Enano installation quick help • {$title}</title>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 232
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 233
<style type="text/css">
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 234
body {
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 235
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 236
font-size: 9pt;
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 237
}
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 238
h2 { border-bottom: 1px solid #90B0D0; margin-bottom: 0; }
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 239
h3 { font-size: 11pt; font-weight: bold; }
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 240
li { list-style: url(../images/bullet.gif); }
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 241
p { margin: 1.0em; }
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 242
blockquote { background-color: #F4F4F4; border: 1px dotted #406080; margin: 1em; padding: 10px; max-height: 250px; overflow: auto; }
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 243
a { color: #7090B0; }
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 244
a:hover { color: #90B0D0; }
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 245
</style>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 246
</head>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 247
<body>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 248
<h2>{$title}</h2>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 249
{$content}
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 250
<p style="text-align: right;">
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 251
<a href="#" onclick="window.close(); return false;">Close window</a>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 252
</p>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 253
</body>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 254
</html>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 255
EOF;
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 256
exit;
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 257
break;
0
+ − 258
default:
+ − 259
break;
+ − 260
}
+ − 261
+ − 262
$template = new template_nodb();
21
663fcf528726
Updated all version numbers back to Banshee; a few preliminary steps towards full UTF-8 support in page URLs
Dan
diff
changeset
+ − 263
$template->load_theme('oxygen', 'bleu', false);
0
+ − 264
+ − 265
$modestrings = Array(
+ − 266
'welcome' => 'Welcome',
+ − 267
'license' => 'License Agreement',
+ − 268
'sysreqs' => 'Server requirements',
+ − 269
'database'=> 'Database information',
+ − 270
'website' => 'Website configuration',
+ − 271
'login' => 'Administration login',
+ − 272
'confirm' => 'Confirm installation',
+ − 273
'install' => 'Database installation',
+ − 274
'finish' => 'Installation complete'
+ − 275
);
+ − 276
+ − 277
$sideinfo = '';
+ − 278
$vars = $template->extract_vars('elements.tpl');
+ − 279
$p = $template->makeParserText($vars['sidebar_button']);
+ − 280
foreach ( $modestrings as $id => $str )
+ − 281
{
+ − 282
if ( $_GET['mode'] == $id )
+ − 283
{
+ − 284
$flags = 'style="font-weight: bold; text-decoration: underline;"';
+ − 285
$this_page = $str;
+ − 286
}
+ − 287
else
+ − 288
{
+ − 289
$flags = '';
+ − 290
}
+ − 291
$p->assign_vars(Array(
+ − 292
'HREF' => '#',
+ − 293
'FLAGS' => $flags . ' onclick="return false;"',
+ − 294
'TEXT' => $str
+ − 295
));
+ − 296
$sideinfo .= $p->run();
+ − 297
}
+ − 298
+ − 299
$template->init_vars();
+ − 300
+ − 301
if(isset($_GET['mode']) && $_GET['mode'] == 'css')
+ − 302
{
+ − 303
header('Content-type: text/css');
+ − 304
echo $template->get_css();
+ − 305
exit;
+ − 306
}
+ − 307
+ − 308
$template->header();
+ − 309
if(!isset($_GET['mode'])) $_GET['mode'] = 'license';
+ − 310
switch($_GET['mode'])
+ − 311
{
+ − 312
default:
+ − 313
case 'welcome':
+ − 314
?>
+ − 315
<div style="text-align: center; margin-top: 10px;">
+ − 316
<img alt="[ Enano CMS Project logo ]" src="images/enano-artwork/installer-greeting-blue.png" style="display: block; margin: 0 auto; padding-left: 100px;" />
+ − 317
<h2>Welcome to Enano</h2>
82
+ − 318
<h3>version 1.0.1 – stable<br />
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
diff
changeset
+ − 319
<span style="font-weight: normal;">also affectionately known as "loch ness" <tt>:)</tt></span></h3>
0
+ − 320
<?php
+ − 321
if ( file_exists('./_nightly.php') )
+ − 322
{
+ − 323
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>';
+ − 324
}
+ − 325
?>
+ − 326
<form action="install.php?mode=license" method="post">
+ − 327
<input type="submit" value="Start installation" />
+ − 328
</form>
+ − 329
</div>
+ − 330
<?php
+ − 331
break;
+ − 332
case "license":
+ − 333
?>
+ − 334
<h3>Welcome to the Enano installer.</h3>
+ − 335
<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>
+ − 336
<p>To get started, please read and accept the following license agreement. You've probably seen it before.</p>
+ − 337
<div style="height: 500px; clip: rect(0px,auto,500px,auto); overflow: auto; padding: 10px; border: 1px dashed #456798; margin: 1em;">
+ − 338
<h2>GNU General Public License</h2>
+ − 339
<h3>Declaration of license usage</h3>
+ − 340
<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>
+ − 341
<p>This program is distributed in the hope that it will be useful, but <u>without any warranty</u>; without even the implied warranty of <u>merchantability</u> or <u>fitness for a particular purpose</u>. See the GNU General Public License (below) for more details.</p>
72
bda11e521e8a
Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
diff
changeset
+ − 342
<p><b>By clicking the button below or otherwise continuing the installation, you indicate your acceptance of this license agreement.</b></p>
0
+ − 343
<h3>Human-readable version</h3>
+ − 344
<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>
+ − 345
<ul>
+ − 346
<li>You may to run Enano for any purpose.</li>
+ − 347
<li>You may study how Enano works and adapt it to your needs.</li>
+ − 348
<li>You may redistribute copies so you can help your neighbor.</li>
+ − 349
<li>You may improve Enano and release your improvements to the public, so that the whole community benefits.</li>
+ − 350
</ul>
+ − 351
<p>You may exercise the freedoms specified here provided that you comply with the express conditions of this license. The principal conditions are:</p>
+ − 352
<ul>
+ − 353
<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>
+ − 354
<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>
+ − 355
<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>
+ − 356
</ul>
+ − 357
<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>
+ − 358
<?php
+ − 359
if ( defined('ENANO_BETA_VERSION') )
+ − 360
{
+ − 361
?>
+ − 362
<h3>Notice for prerelease versions</h3>
+ − 363
<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>
+ − 364
<?php
+ − 365
}
+ − 366
?>
+ − 367
<h3>Lawyer-readable version</h3>
+ − 368
<?php echo wikiFormat(file_get_contents(ENANO_ROOT . '/GPL')); ?>
+ − 369
</div>
+ − 370
<div class="pagenav">
+ − 371
<form action="install.php?mode=sysreqs" method="post">
+ − 372
<table border="0">
+ − 373
<tr>
72
bda11e521e8a
Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
diff
changeset
+ − 374
<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>
0
+ − 375
</tr>
+ − 376
</table>
+ − 377
</form>
+ − 378
</div>
+ − 379
<?php
+ − 380
break;
+ − 381
case "sysreqs":
+ − 382
error_reporting(E_ALL);
+ − 383
?>
+ − 384
<h3>Checking your server</h3>
+ − 385
<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>
+ − 386
<table border="0" cellspacing="0" cellpadding="0">
+ − 387
<?php
+ − 388
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.');
+ − 389
run_test('return function_exists(\'mysql_connect\');', 'MySQL extension for PHP', 'It seems that your PHP installation does not have the MySQL extension enabled. If this is your own server, you may need to just enable the "libmysql.so" extension in php.ini. If you do not have the MySQL extension installed, you will need to either use your distribution\'s package manager to install it, or you will have to compile PHP from source. If you compile PHP from source, please remember to use the "--with-mysql" configure option, and you will have to have the MySQL development files installed (they usually are). If this is not your server, please contact your hosting company and ask them to install the PHP MySQL extension.');
+ − 390
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".');
+ − 391
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);
+ − 392
//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);
+ − 393
run_test('return is_writable(ENANO_ROOT.\'/config.php\');', 'Configuration file writable', 'It looks like the configuration file, config.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.');
+ − 394
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);
+ − 395
run_test('return is_writable(ENANO_ROOT.\'/cache/\');', 'Cache directory writable', 'Apparently the cache/ directory is not writable. Enano will still work, but you will not be able to cache thumbnails, meaning the server will need to re-render them each time they are requested. In some cases, this can cause a significant slowdown.', true);
72
bda11e521e8a
Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
diff
changeset
+ − 396
run_test('return is_writable(ENANO_ROOT.\'/files/\');', 'File uploads directory writable', 'It seems that the directory where uploaded files are stored (' . ENANO_ROOT . '/files) cannot be written by the server. Enano will still function, but file uploads will not function, and will be disabled by default.', true);
0
+ − 397
echo '</table>';
+ − 398
if(!$failed)
+ − 399
{
+ − 400
?>
+ − 401
+ − 402
<div class="pagenav">
+ − 403
<?php
+ − 404
if($warned) {
+ − 405
echo '<table border="0" cellspacing="0" cellpadding="0">';
+ − 406
run_test('return false;', 'Some scalebacks were made due to your server configuration.', 'Enano has detected that some of the features or configuration settings on your server are not optimal for the best behavior and/or performance for Enano. As a result, certain features or enhancements that are part of Enano have been disabled to prevent further errors. You have seen those "fatal error" notices that spew from PHP, haven\'t you?<br /><br />Fatal error:</b> call to undefined function wannahokaloogie() in file <b>'.__FILE__.'</b> on line <b>'.__LINE__.'', true);
+ − 407
echo '</table>';
+ − 408
} else {
+ − 409
echo '<table border="0" cellspacing="0" cellpadding="0">';
72
bda11e521e8a
Fixed a few presentation bugs in installer, made installer more "legally binding", and fixed global permissions inheritance in $session->fetch_page_acl()
Dan
diff
changeset
+ − 410
run_test('return true;', '<b>Your server meets all the requirements for running Enano.</b><br />Click the button below to continue the installation.', 'You should never see this text. Congratulations for being an Enano hacker!');
0
+ − 411
echo '</table>';
+ − 412
}
+ − 413
?>
+ − 414
<form action="install.php?mode=database" method="post">
+ − 415
<table border="0">
+ − 416
<tr>
+ − 417
<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>
+ − 418
</tr>
+ − 419
</table>
+ − 420
</form>
+ − 421
</div>
+ − 422
<?php
+ − 423
} else {
+ − 424
if($failed) {
+ − 425
echo '<div class="pagenav"><table border="0" cellspacing="0" cellpadding="0">';
+ − 426
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.');
+ − 427
echo '</table></div>';
+ − 428
}
+ − 429
}
+ − 430
?>
+ − 431
<?php
+ − 432
break;
+ − 433
case "database":
+ − 434
?>
+ − 435
<script type="text/javascript">
+ − 436
function ajaxGet(uri, f) {
+ − 437
if (window.XMLHttpRequest) {
+ − 438
ajax = new XMLHttpRequest();
+ − 439
} else {
+ − 440
if (window.ActiveXObject) {
+ − 441
ajax = new ActiveXObject("Microsoft.XMLHTTP");
+ − 442
} else {
+ − 443
alert('Enano client-side runtime error: No AJAX support, unable to continue');
+ − 444
return;
+ − 445
}
+ − 446
}
+ − 447
ajax.onreadystatechange = f;
+ − 448
ajax.open('GET', uri, true);
+ − 449
ajax.send(null);
+ − 450
}
+ − 451
+ − 452
function ajaxPost(uri, parms, f) {
+ − 453
if (window.XMLHttpRequest) {
+ − 454
ajax = new XMLHttpRequest();
+ − 455
} else {
+ − 456
if (window.ActiveXObject) {
+ − 457
ajax = new ActiveXObject("Microsoft.XMLHTTP");
+ − 458
} else {
+ − 459
alert('Enano client-side runtime error: No AJAX support, unable to continue');
+ − 460
return;
+ − 461
}
+ − 462
}
+ − 463
ajax.onreadystatechange = f;
+ − 464
ajax.open('POST', uri, true);
+ − 465
ajax.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
+ − 466
ajax.setRequestHeader("Content-length", parms.length);
+ − 467
ajax.setRequestHeader("Connection", "close");
+ − 468
ajax.send(parms);
+ − 469
}
+ − 470
function ajaxTestConnection()
+ − 471
{
+ − 472
v = verify();
+ − 473
if(!v)
+ − 474
{
+ − 475
alert('One or more of the form fields is incorrect. Please correct any information in the form that has an "X" next to it.');
+ − 476
return false;
+ − 477
}
+ − 478
var frm = document.forms.dbinfo;
+ − 479
db_host = escape(frm.db_host.value.replace('+', '%2B'));
+ − 480
db_name = escape(frm.db_name.value.replace('+', '%2B'));
+ − 481
db_user = escape(frm.db_user.value.replace('+', '%2B'));
+ − 482
db_pass = escape(frm.db_pass.value.replace('+', '%2B'));
+ − 483
db_root_user = escape(frm.db_root_user.value.replace('+', '%2B'));
+ − 484
db_root_pass = escape(frm.db_root_pass.value.replace('+', '%2B'));
+ − 485
+ − 486
parms = 'host='+db_host+'&name='+db_name+'&user='+db_user+'&pass='+db_pass+'&root_user='+db_root_user+'&root_pass='+db_root_pass;
+ − 487
ajaxPost('<?php echo scriptPath; ?>/install.php?mode=mysql_test', parms, function() {
+ − 488
if(ajax.readyState==4)
+ − 489
{
+ − 490
s = ajax.responseText.substr(0, 4);
+ − 491
t = ajax.responseText.substr(4, ajax.responseText.length);
+ − 492
if(s.substr(0, 4)=='good')
+ − 493
{
+ − 494
document.getElementById('s_db_host').src='images/good.gif';
+ − 495
document.getElementById('s_db_name').src='images/good.gif';
+ − 496
document.getElementById('s_db_auth').src='images/good.gif';
+ − 497
document.getElementById('s_db_root').src='images/good.gif';
+ − 498
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.';
+ − 499
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.';
+ − 500
document.getElementById('s_mysql_version').src='images/good.gif';
+ − 501
document.getElementById('e_mysql_version').innerHTML = 'Your version of MySQL meets Enano requirements.';
+ − 502
}
+ − 503
else
+ − 504
{
+ − 505
switch(s)
+ − 506
{
+ − 507
case 'host':
+ − 508
document.getElementById('s_db_host').src='images/bad.gif';
+ − 509
document.getElementById('s_db_name').src='images/unknown.gif';
+ − 510
document.getElementById('s_db_auth').src='images/unknown.gif';
+ − 511
document.getElementById('s_db_root').src='images/unknown.gif';
+ − 512
document.getElementById('e_db_host').innerHTML = '<b>Error:<\/b> The database server "'+document.forms.dbinfo.db_host.value+'" couldn\'t be contacted.<br \/>'+t;
+ − 513
document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
+ − 514
break;
+ − 515
case 'auth':
+ − 516
document.getElementById('s_db_host').src='images/good.gif';
+ − 517
document.getElementById('s_db_name').src='images/unknown.gif';
+ − 518
document.getElementById('s_db_auth').src='images/bad.gif';
+ − 519
document.getElementById('s_db_root').src='images/unknown.gif';
+ − 520
document.getElementById('e_db_auth').innerHTML = '<b>Error:<\/b> Access to MySQL under the specified credentials was denied.<br \/>'+t;
+ − 521
document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
+ − 522
break;
+ − 523
case 'perm':
+ − 524
document.getElementById('s_db_host').src='images/good.gif';
+ − 525
document.getElementById('s_db_name').src='images/bad.gif';
+ − 526
document.getElementById('s_db_auth').src='images/good.gif';
+ − 527
document.getElementById('s_db_root').src='images/unknown.gif';
+ − 528
document.getElementById('e_db_name').innerHTML = '<b>Error:<\/b> Access to the specified database using those login credentials was denied.<br \/>'+t;
+ − 529
document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
+ − 530
break;
+ − 531
case 'name':
+ − 532
document.getElementById('s_db_host').src='images/good.gif';
+ − 533
document.getElementById('s_db_name').src='images/bad.gif';
+ − 534
document.getElementById('s_db_auth').src='images/good.gif';
+ − 535
document.getElementById('s_db_root').src='images/unknown.gif';
+ − 536
document.getElementById('e_db_name').innerHTML = '<b>Error:<\/b> The specified database does not exist<br \/>'+t;
+ − 537
document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
+ − 538
break;
+ − 539
case 'root':
+ − 540
document.getElementById('s_db_host').src='images/good.gif';
+ − 541
document.getElementById('s_db_name').src='images/unknown.gif';
+ − 542
document.getElementById('s_db_auth').src='images/unknown.gif';
+ − 543
document.getElementById('s_db_root').src='images/bad.gif';
+ − 544
document.getElementById('e_db_root').innerHTML = '<b>Error:<\/b> Access to MySQL under the specified credentials was denied.<br \/>'+t;
+ − 545
document.getElementById('e_mysql_version').innerHTML = 'The MySQL version that your server is running could not be determined.';
+ − 546
break;
+ − 547
case 'vers':
+ − 548
document.getElementById('s_db_host').src='images/good.gif';
+ − 549
document.getElementById('s_db_name').src='images/good.gif';
+ − 550
document.getElementById('s_db_auth').src='images/good.gif';
+ − 551
document.getElementById('s_db_root').src='images/good.gif';
+ − 552
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.';
+ − 553
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.';
+ − 554
+ − 555
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().';
+ − 556
document.getElementById('s_mysql_version').src='images/bad.gif';
+ − 557
default:
+ − 558
alert(t);
+ − 559
break;
+ − 560
}
+ − 561
}
+ − 562
}
+ − 563
});
+ − 564
}
+ − 565
function verify()
+ − 566
{
+ − 567
document.getElementById('e_db_host').innerHTML = '';
+ − 568
document.getElementById('e_db_auth').innerHTML = '';
+ − 569
document.getElementById('e_db_name').innerHTML = '';
+ − 570
document.getElementById('e_db_root').innerHTML = '';
+ − 571
var frm = document.forms.dbinfo;
+ − 572
ret = true;
+ − 573
if(frm.db_host.value != '')
+ − 574
{
+ − 575
document.getElementById('s_db_host').src='images/unknown.gif';
+ − 576
}
+ − 577
else
+ − 578
{
+ − 579
document.getElementById('s_db_host').src='images/bad.gif';
+ − 580
ret = false;
+ − 581
}
+ − 582
if(frm.db_name.value.match(/^([a-z0-9_]+)$/g))
+ − 583
{
+ − 584
document.getElementById('s_db_name').src='images/unknown.gif';
+ − 585
}
+ − 586
else
+ − 587
{
+ − 588
document.getElementById('s_db_name').src='images/bad.gif';
+ − 589
ret = false;
+ − 590
}
+ − 591
if(frm.db_user.value != '')
+ − 592
{
+ − 593
document.getElementById('s_db_auth').src='images/unknown.gif';
+ − 594
}
+ − 595
else
+ − 596
{
+ − 597
document.getElementById('s_db_auth').src='images/bad.gif';
+ − 598
ret = false;
+ − 599
}
+ − 600
if(frm.table_prefix.value.match(/^([a-z0-9_]*)$/g))
+ − 601
{
+ − 602
document.getElementById('s_table_prefix').src='images/good.gif';
+ − 603
}
+ − 604
else
+ − 605
{
+ − 606
document.getElementById('s_table_prefix').src='images/bad.gif';
+ − 607
ret = false;
+ − 608
}
+ − 609
if(frm.db_root_user.value == '')
+ − 610
{
+ − 611
document.getElementById('s_db_root').src='images/good.gif';
+ − 612
}
+ − 613
else if(frm.db_root_user.value != '' && frm.db_root_pass.value == '')
+ − 614
{
+ − 615
document.getElementById('s_db_root').src='images/bad.gif';
+ − 616
ret = false;
+ − 617
}
+ − 618
else
+ − 619
{
+ − 620
document.getElementById('s_db_root').src='images/unknown.gif';
+ − 621
}
+ − 622
if(ret) frm._cont.disabled = false;
+ − 623
else frm._cont.disabled = true;
+ − 624
return ret;
+ − 625
}
+ − 626
window.onload = verify;
+ − 627
</script>
+ − 628
<p>Now we need some information that will allow Enano to contact your database server. Enano uses MySQL as a data storage backend,
+ − 629
and we need to have access to a MySQL server in order to continue.</p>
+ − 630
<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
+ − 631
<a href="http://www.mysql.com/">MySQL.com</a>. <b>Please note that, like Enano, MySQL is licensed under the GNU GPL.</b>
+ − 632
If you need to modify MySQL and then distribute your modifications, you must either distribute them under the terms of the GPL
+ − 633
or purchase a proprietary license.</p>
+ − 634
<form name="dbinfo" action="install.php?mode=website" method="post">
+ − 635
<table border="0">
+ − 636
<tr><td colspan="3" style="text-align: center"><h3>Database information</h3></td></tr>
+ − 637
<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>
+ − 638
<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>
+ − 639
<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>
+ − 640
<tr><td><input name="db_pass" size="30" type="password" /></td></tr>
+ − 641
<tr><td colspan="3" style="text-align: center"><h3>Optional information</h3></td></tr>
+ − 642
<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>
+ − 643
<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>
+ − 644
<tr><td><input onkeyup="verify();" name="db_root_pass" size="30" type="password" /></td></tr>
+ − 645
<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>
+ − 646
<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>
+ − 647
<tr><td colspan="3" style="text-align: center"><input type="button" value="Test connection" onclick="ajaxTestConnection();" /></td></tr>
+ − 648
</table>
+ − 649
<div class="pagenav">
+ − 650
<table border="0">
+ − 651
<tr>
+ − 652
<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>
+ − 653
</tr>
+ − 654
</table>
+ − 655
</div>
+ − 656
</form>
+ − 657
<?php
+ − 658
break;
+ − 659
case "website":
+ − 660
if(!isset($_POST['_cont'])) {
+ − 661
echo 'No POST data signature found. Please <a href="install.php?mode=license">restart the installation</a>.';
+ − 662
$template->footer();
+ − 663
exit;
+ − 664
}
+ − 665
unset($_POST['_cont']);
+ − 666
?>
+ − 667
<script type="text/javascript">
+ − 668
function verify()
+ − 669
{
+ − 670
var frm = document.forms.siteinfo;
+ − 671
ret = true;
40
+ − 672
if(frm.sitename.value.match(/^(.+)$/g) && frm.sitename.value != 'Enano')
0
+ − 673
{
+ − 674
document.getElementById('s_name').src='images/good.gif';
+ − 675
}
+ − 676
else
+ − 677
{
+ − 678
document.getElementById('s_name').src='images/bad.gif';
+ − 679
ret = false;
+ − 680
}
+ − 681
if(frm.sitedesc.value.match(/^(.+)$/g))
+ − 682
{
+ − 683
document.getElementById('s_desc').src='images/good.gif';
+ − 684
}
+ − 685
else
+ − 686
{
+ − 687
document.getElementById('s_desc').src='images/bad.gif';
+ − 688
ret = false;
+ − 689
}
+ − 690
if(frm.copyright.value.match(/^(.+)$/g))
+ − 691
{
+ − 692
document.getElementById('s_copyright').src='images/good.gif';
+ − 693
}
+ − 694
else
+ − 695
{
+ − 696
document.getElementById('s_copyright').src='images/bad.gif';
+ − 697
ret = false;
+ − 698
}
+ − 699
if(ret) frm._cont.disabled = false;
+ − 700
else frm._cont.disabled = true;
+ − 701
return ret;
+ − 702
}
+ − 703
window.onload = verify;
+ − 704
</script>
+ − 705
<form name="siteinfo" action="install.php?mode=login" method="post">
+ − 706
<?php
+ − 707
$k = array_keys($_POST);
+ − 708
for($i=0;$i<sizeof($_POST);$i++) {
40
+ − 709
echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
0
+ − 710
}
+ − 711
?>
+ − 712
<p>The next step is to enter some information about your website. You can always change this information later, using the administration panel.</p>
+ − 713
<table border="0">
+ − 714
<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>
+ − 715
<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>
+ − 716
<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>
+ − 717
<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>
+ − 718
<tr><td><b>URL scheme</b><br />Choose how the page URLs will look. Depending on your server configuration, you may need to select the first option. If you don't know, select the first option, and you can always change it later.</td><td colspan="2"><input type="radio" <?php if(!is_apache()) echo 'checked="checked" '; ?>name="urlscheme" value="ugly" id="ugly"> <label for="ugly">Standard URLs - compatible with any web server (www.example.com/index.php?title=Page_name)</label><br /><input type="radio" <?php if(is_apache()) echo 'checked="checked" '; ?>name="urlscheme" value="short" id="short"> <label for="short">Short URLs - requires Apache with a PHP module (www.example.com/index.php/Page_name)</label><br /><input type="radio" name="urlscheme" value="tiny" id="petite"> <label for="petite">Tiny URLs - requires Apache on Linux/Unix/BSD with PHP module and mod_rewrite enabled (www.example.com/Page_name)</label></td></tr>
+ − 719
</table>
+ − 720
<div class="pagenav">
+ − 721
<table border="0">
+ − 722
<tr>
+ − 723
<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>
+ − 724
</tr>
+ − 725
</table>
+ − 726
</div>
+ − 727
</form>
+ − 728
<?php
+ − 729
break;
+ − 730
case "login":
+ − 731
if(!isset($_POST['_cont'])) {
+ − 732
echo 'No POST data signature found. Please <a href="install.php?mode=license">restart the installation</a>.';
+ − 733
$template->footer();
+ − 734
exit;
+ − 735
}
+ − 736
unset($_POST['_cont']);
+ − 737
require('config.php');
+ − 738
$aes = new AESCrypt(AES_BITS, AES_BLOCKSIZE);
12
+ − 739
if ( isset($crypto_key) )
+ − 740
{
+ − 741
$cryptkey = $crypto_key;
+ − 742
}
0
+ − 743
if(!isset($cryptkey) || ( isset($cryptkey) && strlen($cryptkey) != AES_BITS / 4) )
+ − 744
{
+ − 745
$cryptkey = $aes->gen_readymade_key();
+ − 746
$handle = @fopen(ENANO_ROOT.'/config.php', 'w');
+ − 747
if(!$handle)
+ − 748
{
+ − 749
echo '<p>ERROR: Cannot open config.php for writing - exiting!</p>';
+ − 750
$template->footer();
+ − 751
exit;
+ − 752
}
+ − 753
fwrite($handle, '<?php $cryptkey = \''.$cryptkey.'\'; ?>');
+ − 754
fclose($handle);
+ − 755
}
+ − 756
?>
+ − 757
<script type="text/javascript">
+ − 758
function verify()
+ − 759
{
+ − 760
var frm = document.forms.login;
+ − 761
ret = true;
98
6457a9b983c6
Fixed non-object reference in databaseless template, added locking for Javascript paginator, made comments on AES key size more clear in constants, and disallowed "anonymous" and IP addresses for admin username in install.php; Loch Ness release candidate
Dan
diff
changeset
+ − 762
if ( frm.admin_user.value.match(/^([A-z0-9 \-\.]+)$/g) && !frm.admin_user.value.match(/^(?:(?:\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.){3}(?:\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/) && frm.admin_user.value.toLowerCase() != 'anonymous' )
0
+ − 763
{
+ − 764
document.getElementById('s_user').src = 'images/good.gif';
+ − 765
}
+ − 766
else
+ − 767
{
+ − 768
document.getElementById('s_user').src = 'images/bad.gif';
+ − 769
ret = false;
+ − 770
}
+ − 771
if(frm.admin_pass.value.length >= 6 && frm.admin_pass.value == frm.admin_pass_confirm.value)
+ − 772
{
+ − 773
document.getElementById('s_password').src = 'images/good.gif';
+ − 774
}
+ − 775
else
+ − 776
{
+ − 777
document.getElementById('s_password').src = 'images/bad.gif';
+ − 778
ret = false;
+ − 779
}
+ − 780
if(frm.admin_email.value.match(/^(?:[\w\d]+\.?)+@(?:(?:[\w\d]\-?)+\.)+\w{2,4}$/))
+ − 781
{
+ − 782
document.getElementById('s_email').src = 'images/good.gif';
+ − 783
}
+ − 784
else
+ − 785
{
+ − 786
document.getElementById('s_email').src = 'images/bad.gif';
+ − 787
ret = false;
+ − 788
}
+ − 789
if(ret) frm._cont.disabled = false;
+ − 790
else frm._cont.disabled = true;
+ − 791
return ret;
+ − 792
}
+ − 793
window.onload = verify;
+ − 794
+ − 795
function cryptdata()
+ − 796
{
+ − 797
if(!verify()) return false;
+ − 798
}
+ − 799
</script>
+ − 800
<form name="login" action="install.php?mode=confirm" method="post" onsubmit="runEncryption();">
+ − 801
<?php
+ − 802
$k = array_keys($_POST);
+ − 803
for($i=0;$i<sizeof($_POST);$i++) {
40
+ − 804
echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
0
+ − 805
}
+ − 806
?>
+ − 807
<p>Next, enter your desired username and password. The account you create here will be used to administer your site.</p>
+ − 808
<table border="0">
98
6457a9b983c6
Fixed non-object reference in databaseless template, added locking for Javascript paginator, made comments on AES key size more clear in constants, and disallowed "anonymous" and IP addresses for admin username in install.php; Loch Ness release candidate
Dan
diff
changeset
+ − 809
<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>
0
+ − 810
<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>
+ − 811
<tr><td>Enter it again to confirm:</td><td><input onkeyup="verify();" name="admin_pass_confirm" type="password" size="30" /></td></tr>
+ − 812
<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>
11
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 813
<tr>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 814
<td>
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 815
Allow administrators to embed PHP code into pages:<br />
11
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 816
<small><span style="color: #D84308">Do not under any circumstances enable this option without reading these
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 817
<a href="install.php?mode=pophelp&topic=admin_embed_php"
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 818
onclick="window.open(this.href, 'pophelpwin', 'width=550,height=400,status=no,toolbars=no,toolbar=no,address=no,scroll=yes'); return false;"
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 819
style="color: #D84308; text-decoration: underline;">important security implications</a>.
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 820
</span></small>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 821
</td>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 822
<td>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 823
<label><input type="radio" name="admin_embed_php" value="2" checked="checked" /> Disabled</label>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 824
<label><input type="radio" name="admin_embed_php" value="4" /> Enabled</label>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 825
</td>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 826
<td></td>
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 827
</tr>
0
+ − 828
<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>
+ − 829
</table>
+ − 830
<div class="pagenav">
+ − 831
<table border="0">
+ − 832
<tr>
+ − 833
<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>
+ − 834
</tr>
+ − 835
</table>
+ − 836
</div>
+ − 837
<div id="cryptdebug"></div>
+ − 838
<input type="hidden" name="use_crypt" value="no" />
+ − 839
<input type="hidden" name="crypt_key" value="<?php echo $cryptkey; ?>" />
+ − 840
<input type="hidden" name="crypt_data" value="" />
+ − 841
</form>
+ − 842
<script type="text/javascript">
+ − 843
// <![CDATA[
+ − 844
frm.admin_user.focus();
+ − 845
function runEncryption()
+ − 846
{
40
+ − 847
str = '';
+ − 848
for(i=0;i<keySizeInBits/4;i++) str+='0';
+ − 849
var key = hexToByteArray(str);
+ − 850
var pt = hexToByteArray(str);
+ − 851
var ct = rijndaelEncrypt(pt, key, "ECB");
+ − 852
var ect = byteArrayToHex(ct);
+ − 853
switch(keySizeInBits)
+ − 854
{
+ − 855
case 128:
+ − 856
v = '66e94bd4ef8a2c3b884cfa59ca342b2e';
+ − 857
break;
+ − 858
case 192:
+ − 859
v = 'aae06992acbf52a3e8f4a96ec9300bd7aae06992acbf52a3e8f4a96ec9300bd7';
+ − 860
break;
+ − 861
case 256:
+ − 862
v = 'dc95c078a2408989ad48a21492842087dc95c078a2408989ad48a21492842087';
+ − 863
break;
+ − 864
}
+ − 865
var testpassed = ( ect == v && md5_vm_test() );
+ − 866
var frm = document.forms.login;
+ − 867
if(testpassed)
+ − 868
{
+ − 869
// alert('encryption self-test passed');
+ − 870
frm.use_crypt.value = 'yes';
+ − 871
var cryptkey = frm.crypt_key.value;
+ − 872
frm.crypt_key.value = '';
+ − 873
if(cryptkey != byteArrayToHex(hexToByteArray(cryptkey)))
+ − 874
{
+ − 875
alert('Byte array conversion SUCKS');
+ − 876
testpassed = false;
+ − 877
}
+ − 878
cryptkey = hexToByteArray(cryptkey);
+ − 879
if(!cryptkey || ( ( typeof cryptkey == 'string' || typeof cryptkey == 'object' ) ) && cryptkey.length != keySizeInBits / 8 )
+ − 880
{
+ − 881
frm._cont.disabled = true;
+ − 882
len = ( typeof cryptkey == 'string' || typeof cryptkey == 'object' ) ? '\nLen: '+cryptkey.length : '';
+ − 883
alert('The key is messed up\nType: '+typeof(cryptkey)+len);
+ − 884
}
+ − 885
}
+ − 886
else
+ − 887
{
+ − 888
// alert('encryption self-test FAILED');
+ − 889
}
0
+ − 890
if(testpassed)
+ − 891
{
+ − 892
pass = frm.admin_pass.value;
+ − 893
pass = stringToByteArray(pass);
+ − 894
cryptstring = rijndaelEncrypt(pass, cryptkey, 'ECB');
+ − 895
//decrypted = rijndaelDecrypt(cryptstring, cryptkey, 'ECB');
+ − 896
//decrypted = byteArrayToString(decrypted);
+ − 897
//return false;
+ − 898
if(!cryptstring)
+ − 899
{
+ − 900
return false;
+ − 901
}
+ − 902
cryptstring = byteArrayToHex(cryptstring);
40
+ − 903
// document.getElementById('cryptdebug').innerHTML = '<pre>Data: '+cryptstring+'<br />Key: '+byteArrayToHex(cryptkey)+'</pre>';
0
+ − 904
frm.crypt_data.value = cryptstring;
+ − 905
frm.admin_pass.value = '';
+ − 906
frm.admin_pass_confirm.value = '';
+ − 907
}
+ − 908
return false;
+ − 909
}
+ − 910
// ]]>
+ − 911
</script>
+ − 912
<?php
+ − 913
break;
+ − 914
case "confirm":
+ − 915
if(!isset($_POST['_cont'])) {
+ − 916
echo 'No POST data signature found. Please <a href="install.php?mode=license">restart the installation</a>.';
+ − 917
$template->footer();
+ − 918
exit;
+ − 919
}
+ − 920
unset($_POST['_cont']);
+ − 921
?>
+ − 922
<form name="confirm" action="install.php?mode=install" method="post">
+ − 923
<?php
+ − 924
$k = array_keys($_POST);
+ − 925
for($i=0;$i<sizeof($_POST);$i++) {
40
+ − 926
echo '<input type="hidden" name="'.htmlspecialchars($k[$i]).'" value="'.htmlspecialchars($_POST[$k[$i]]).'" />'."\n";
0
+ − 927
}
+ − 928
?>
+ − 929
<h3>Enano is ready to install.</h3>
+ − 930
<p>The wizard has finished collecting information and is ready to install the database schema. Please review the information below,
+ − 931
and then click the button below to install the database.</p>
+ − 932
<ul>
+ − 933
<li>Database hostname: <?php echo $_POST['db_host']; ?></li>
+ − 934
<li>Database name: <?php echo $_POST['db_name']; ?></li>
+ − 935
<li>Database user: <?php echo $_POST['db_user']; ?></li>
+ − 936
<li>Database password: <hidden></li>
+ − 937
<li>Site name: <?php echo $_POST['sitename']; ?></li>
+ − 938
<li>Site description: <?php echo $_POST['sitedesc']; ?></li>
+ − 939
<li>Administration username: <?php echo $_POST['admin_user']; ?></li>
+ − 940
<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>
+ − 941
</ul>
+ − 942
<div class="pagenav">
+ − 943
<table border="0">
+ − 944
<tr>
+ − 945
<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>
+ − 946
</tr>
+ − 947
</table>
+ − 948
</div>
+ − 949
</form>
+ − 950
<?php
+ − 951
break;
+ − 952
case "install":
+ − 953
if(!isset($_POST['db_host']) ||
+ − 954
!isset($_POST['db_name']) ||
+ − 955
!isset($_POST['db_user']) ||
+ − 956
!isset($_POST['db_pass']) ||
+ − 957
!isset($_POST['sitename']) ||
+ − 958
!isset($_POST['sitedesc']) ||
+ − 959
!isset($_POST['copyright']) ||
+ − 960
!isset($_POST['admin_user']) ||
+ − 961
!isset($_POST['admin_pass']) ||
11
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 962
!isset($_POST['admin_embed_php']) || ( isset($_POST['admin_embed_php']) && !in_array($_POST['admin_embed_php'], array('2', '4')) ) ||
0
+ − 963
!isset($_POST['urlscheme'])
+ − 964
)
+ − 965
{
+ − 966
echo 'The installer has detected that one or more required form values is not set. Please <a href="install.php?mode=license">restart the installation</a>.';
+ − 967
$template->footer();
+ − 968
exit;
+ − 969
}
+ − 970
switch($_POST['urlscheme'])
+ − 971
{
+ − 972
case "ugly":
+ − 973
default:
+ − 974
$cp = scriptPath.'/index.php?title=';
+ − 975
break;
+ − 976
case "short":
+ − 977
$cp = scriptPath.'/index.php/';
+ − 978
break;
+ − 979
case "tiny":
+ − 980
$cp = scriptPath.'/';
+ − 981
break;
+ − 982
}
+ − 983
function err($t) { global $template; echo $t; $template->footer(); exit; }
+ − 984
+ − 985
echo 'Connecting to MySQL...';
+ − 986
if($_POST['db_root_user'] != '')
+ − 987
{
+ − 988
$conn = mysql_connect($_POST['db_host'], $_POST['db_root_user'], $_POST['db_root_pass']);
+ − 989
if(!$conn) err('Error connecting to MySQL: '.mysql_error());
+ − 990
$q = mysql_query('USE '.$_POST['db_name']);
+ − 991
if(!$q)
+ − 992
{
+ − 993
$q = mysql_query('CREATE DATABASE '.$_POST['db_name']);
+ − 994
if(!$q) err('Error initializing database: '.mysql_error());
+ − 995
}
+ − 996
$q = mysql_query('GRANT ALL PRIVILEGES ON '.$_POST['db_name'].'.* TO \''.$_POST['db_user'].'\'@\'localhost\' IDENTIFIED BY \''.$_POST['db_pass'].'\' WITH GRANT OPTION;');
+ − 997
if(!$q) err('Could not create the user account');
+ − 998
$q = mysql_query('GRANT ALL PRIVILEGES ON '.$_POST['db_name'].'.* TO \''.$_POST['db_user'].'\'@\'%\' IDENTIFIED BY \''.$_POST['db_pass'].'\' WITH GRANT OPTION;');
+ − 999
if(!$q) err('Could not create the user account');
+ − 1000
mysql_close($conn);
+ − 1001
}
+ − 1002
$conn = mysql_connect($_POST['db_host'], $_POST['db_user'], $_POST['db_pass']);
+ − 1003
if(!$conn) err('Error connecting to MySQL: '.mysql_error());
+ − 1004
$q = mysql_query('USE '.$_POST['db_name']);
+ − 1005
if(!$q) err('Error selecting database: '.mysql_error());
+ − 1006
echo 'done!<br />';
+ − 1007
+ − 1008
// Are we supposed to drop any existing tables? If so, do it now
+ − 1009
if(isset($_POST['drop_tables']))
+ − 1010
{
+ − 1011
echo 'Dropping existing Enano tables...';
+ − 1012
// Our list of tables included in Enano
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
diff
changeset
+ − 1013
$tables = Array( 'mdg_categories', 'mdg_comments', 'mdg_config', 'mdg_logs', 'mdg_page_text', 'mdg_session_keys', 'mdg_pages', 'mdg_users', 'mdg_users_extra', 'mdg_themes', 'mdg_buddies', 'mdg_banlist', 'mdg_files', 'mdg_privmsgs', 'mdg_sidebar', 'mdg_hits', 'mdg_search_index', 'mdg_groups', 'mdg_group_members', 'mdg_acl', 'mdg_search_cache', 'mdg_tags', 'mdg_page_groups', 'mdg_page_group_members' );
0
+ − 1014
$tables = implode(', ', $tables);
+ − 1015
$tables = str_replace('mdg_', $_POST['table_prefix'], $tables);
+ − 1016
$query_of_death = 'DROP TABLE '.$tables.';';
+ − 1017
mysql_query($query_of_death); // We won't check for errors here because if this operation fails it probably means the tables didn't exist
+ − 1018
echo 'done!<br />';
+ − 1019
}
+ − 1020
+ − 1021
$cacheonoff = is_writable(ENANO_ROOT.'/cache/') ? '1' : '0';
+ − 1022
+ − 1023
echo 'Decrypting administration password...';
40
+ − 1024
+ − 1025
$aes = new AESCrypt(AES_BITS, AES_BLOCKSIZE);
+ − 1026
+ − 1027
if ( !empty($_POST['crypt_data']) )
12
+ − 1028
{
40
+ − 1029
require('config.php');
+ − 1030
if ( !isset($cryptkey) )
+ − 1031
{
+ − 1032
echo 'failed!<br />Cannot get the key from config.php';
+ − 1033
break;
+ − 1034
}
+ − 1035
$key = hexdecode($cryptkey);
+ − 1036
+ − 1037
$dec = $aes->decrypt($_POST['crypt_data'], $key, ENC_HEX);
+ − 1038
12
+ − 1039
}
40
+ − 1040
else
+ − 1041
{
+ − 1042
$dec = $_POST['admin_pass'];
+ − 1043
}
0
+ − 1044
echo 'done!<br />Generating '.AES_BITS.'-bit AES private key...';
+ − 1045
$privkey = $aes->gen_readymade_key();
+ − 1046
$pkba = hexdecode($privkey);
+ − 1047
$encpass = $aes->encrypt($dec, $pkba, ENC_HEX);
+ − 1048
+ − 1049
echo 'done!<br />Preparing for schema execution...';
+ − 1050
$schema = file_get_contents('schema.sql');
+ − 1051
$schema = str_replace('{{SITE_NAME}}', mysql_real_escape_string($_POST['sitename'] ), $schema);
+ − 1052
$schema = str_replace('{{SITE_DESC}}', mysql_real_escape_string($_POST['sitedesc'] ), $schema);
+ − 1053
$schema = str_replace('{{COPYRIGHT}}', mysql_real_escape_string($_POST['copyright'] ), $schema);
+ − 1054
$schema = str_replace('{{ADMIN_USER}}', mysql_real_escape_string($_POST['admin_user'] ), $schema);
+ − 1055
$schema = str_replace('{{ADMIN_PASS}}', mysql_real_escape_string($encpass ), $schema);
+ − 1056
$schema = str_replace('{{ADMIN_EMAIL}}', mysql_real_escape_string($_POST['admin_email']), $schema);
+ − 1057
$schema = str_replace('{{ENABLE_CACHE}}', mysql_real_escape_string($cacheonoff ), $schema);
+ − 1058
$schema = str_replace('{{REAL_NAME}}', '', $schema);
+ − 1059
$schema = str_replace('{{TABLE_PREFIX}}', $_POST['table_prefix'], $schema);
+ − 1060
$schema = str_replace('{{VERSION}}', ENANO_VERSION, $schema);
11
ccad6026a168
Finalized permissions on files and directories; adding PHP shutoff button (actual shutoff not implemented)
Dan
diff
changeset
+ − 1061
$schema = str_replace('{{ADMIN_EMBED_PHP}}', $_POST['admin_embed_php'], $schema);
21
663fcf528726
Updated all version numbers back to Banshee; a few preliminary steps towards full UTF-8 support in page URLs
Dan
diff
changeset
+ − 1062
// Not anymore!! :-D
663fcf528726
Updated all version numbers back to Banshee; a few preliminary steps towards full UTF-8 support in page URLs
Dan
diff
changeset
+ − 1063
// $schema = str_replace('{{BETA_VERSION}}', ENANO_BETA_VERSION, $schema);
0
+ − 1064
27
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1065
if(isset($_POST['wiki_mode']))
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1066
{
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1067
$schema = str_replace('{{WIKI_MODE}}', '1', $schema);
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1068
}
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1069
else
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1070
{
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1071
$schema = str_replace('{{WIKI_MODE}}', '0', $schema);
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1072
}
0
+ − 1073
+ − 1074
// Build an array of queries
27
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1075
$schema = explode("\n", $schema);
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1076
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1077
foreach ( $schema as $i => $sql )
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1078
{
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1079
$query =& $schema[$i];
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1080
$t = trim($query);
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1081
if ( empty($t) || preg_match('/^(\#|--)/i', $t) )
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1082
{
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1083
unset($schema[$i]);
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1084
unset($query);
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1085
}
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1086
}
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1087
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1088
$schema = array_values($schema);
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1089
$schema = implode("\n", $schema);
0
+ − 1090
$schema = explode(";\n", $schema);
27
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1091
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1092
foreach ( $schema as $i => $sql )
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1093
{
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1094
$query =& $schema[$i];
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1095
if ( substr($query, ( strlen($query) - 1 ), 1 ) != ';' )
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1096
{
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1097
$query .= ';';
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1098
}
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1099
}
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1100
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1101
// echo '<pre>' . htmlspecialchars(print_r($schema, true)) . '</pre>';
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1102
// break;
dd659f6ba891
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default
Dan
diff
changeset
+ − 1103
0
+ − 1104
echo 'done!<br />Executing schema.sql...';
+ − 1105
+ − 1106
// OK, do the loop, baby!!!
+ − 1107
foreach($schema as $q)
+ − 1108
{
+ − 1109
$r = mysql_query($q, $conn);
+ − 1110
if(!$r) err('Error during mainstream installation: '.mysql_error());
+ − 1111
}
+ − 1112
+ − 1113
echo 'done!<br />Writing configuration files...';
+ − 1114
if($_POST['urlscheme']=='tiny')
+ − 1115
{
13
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 1116
$ht = fopen(ENANO_ROOT.'/.htaccess', 'a+');
0
+ − 1117
if(!$ht) err('Error opening file .htaccess for writing');
+ − 1118
fwrite($ht, '
+ − 1119
RewriteEngine on
+ − 1120
RewriteCond %{REQUEST_FILENAME} !-d
+ − 1121
RewriteCond %{REQUEST_FILENAME} !-f
85
7c68a18a27be
AJAX comments are now paginated; plugin manager can now show system plugins; typo in installer corrected; links in oxygen/stpatty/admin footers changed to "About Enano" page; 1.0.1 release candidate
Dan
diff
changeset
+ − 1122
RewriteRule ^(.+) '.scriptPath.'/index.php?title=$1 [L,QSA]
0
+ − 1123
RewriteRule \.(php|html|gif|jpg|png|css|js)$ - [L]
+ − 1124
');
+ − 1125
fclose($ht);
+ − 1126
}
+ − 1127
+ − 1128
$config_file = '<?php
+ − 1129
/* Enano auto-generated configuration file - editing not recommended! */
+ − 1130
$dbhost = \''.addslashes($_POST['db_host']).'\';
+ − 1131
$dbname = \''.addslashes($_POST['db_name']).'\';
+ − 1132
$dbuser = \''.addslashes($_POST['db_user']).'\';
+ − 1133
$dbpasswd = \''.addslashes($_POST['db_pass']).'\';
+ − 1134
if(!defined(\'ENANO_CONSTANTS\')) {
+ − 1135
define(\'ENANO_CONSTANTS\', \'\');
+ − 1136
define(\'table_prefix\', \''.$_POST['table_prefix'].'\');
+ − 1137
define(\'scriptPath\', \''.scriptPath.'\');
+ − 1138
define(\'contentPath\', \''.$cp.'\');
+ − 1139
define(\'ENANO_INSTALLED\', \'true\');
+ − 1140
}
+ − 1141
$crypto_key = \''.$privkey.'\';
+ − 1142
?>';
+ − 1143
13
fdd6b9dd42c3
Installer actually works now on dev servers; minor language change in template.php; code cleanliness fix in sessions.php
Dan
diff
changeset
+ − 1144
$cf_handle = fopen(ENANO_ROOT.'/config.php', 'w');
0
+ − 1145
if(!$cf_handle) err('Couldn\'t open file config.php for writing');
+ − 1146
fwrite($cf_handle, $config_file);
+ − 1147
fclose($cf_handle);
+ − 1148
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1149
echo 'done!<br />Starting the Enano API...';
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1150
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1151
$template_bak = $template;
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1152
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1153
// Get Enano loaded
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1154
$_GET['title'] = 'Main_Page';
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1155
require('includes/common.php');
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1156
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1157
// We need to be logged in (with admin rights) before logs can be flushed
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1158
$session->login_without_crypto($_POST['admin_user'], $dec, false);
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1159
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1160
// Now that login cookies are set, initialize the session manager and ACLs
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1161
$session->start();
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1162
$paths->init();
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1163
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1164
unset($template);
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1165
$template =& $template_bak;
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1166
0
+ − 1167
echo 'done!<br />Initializing logs...';
+ − 1168
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1169
$q = $db->sql_query('INSERT INTO ' . $_POST['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']) . '\');', $conn);
0
+ − 1170
if ( !$q )
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1171
err('Error setting up logs: '.$db->get_error());
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1172
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1173
if ( !$session->get_permissions('clear_logs') )
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1174
{
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1175
echo '<br />Error: session manager won\'t permit flushing logs, these is a bug.';
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1176
break;
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1177
}
0
+ − 1178
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1179
// unset($session);
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1180
// $session = new sessionManager();
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1181
// $session->start();
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1182
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1183
PageUtils::flushlogs('Main_Page', 'Article');
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1184
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
diff
changeset
+ − 1185
echo 'done!<h3>Installation of Enano is complete.</h3><p>Review any warnings above, and then <a href="install.php?mode=finish">click here to finish the installation</a>.';
0
+ − 1186
+ − 1187
// echo '<script type="text/javascript">window.location="'.scriptPath.'/install.php?mode=finish";</script>';
+ − 1188
+ − 1189
break;
+ − 1190
case "finish":
+ − 1191
echo '<h3>Congratulations!</h3>
+ − 1192
<p>You have finished installing Enano on this server.</p>
+ − 1193
<h3>Now what?</h3>
+ − 1194
<p>Click the link below to see the main page for your website. Where to go from here:</p>
+ − 1195
<ul>
+ − 1196
<li>The first thing you should do is log into your site using the Log in link on the sidebar.</li>
+ − 1197
<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>
+ − 1198
<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>
+ − 1199
<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>
+ − 1200
<li>Hire some moderators, to help you keep rowdy users tame.</li>
+ − 1201
<li>Tell the <a href="http://enanocms.org/Contact_us">Enano team</a> what you think.</li>
+ − 1202
<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>
+ − 1203
</ul>
+ − 1204
<p><a href="index.php">Go to your website...</a></p>';
+ − 1205
break;
+ − 1206
}
+ − 1207
$template->footer();
+ − 1208
+ − 1209
?>