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