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