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