File: admin.php

package info (click to toggle)
irm 1.5.3.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,436 kB
  • ctags: 3,308
  • sloc: php: 16,796; sh: 127; perl: 97; pascal: 56; makefile: 48
file content (445 lines) | stat: -rw-r--r-- 11,071 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<?php

require_once dirname(__FILE__).'/lib/Config.php';

// Pre anything health check
$dirpaths = explode(Config::PathSeparator(), ini_get('include_path'));

$mdb = false;
foreach ($dirpaths as $path)
{
	if (file_exists("$path/MDB.php"))
	{
		$mdb = true;
	}
}

require_once dirname(__FILE__).'/include/i18n.php';

if (!$mdb)
{
?>
<html>
<head>
<title><?php __("Problem with IRM Installation") ?></title>
</head>
<body>
<h1><?php __("Error: MDB not installed or not in the include path") ?></h1>
<p>
<?php __("I failed to find the MDB package installed in any location in your
include path.  This may mean one of two things:") ?>

<ul>
<li><?php __("You haven't got MDB installed; or") ?>
<li><?php __("Your include path does not have the location of your MDB installation.") ?>
</ul>

<p>
<?php __("To remedy the former problem, please run the following command as an
administrator or root user:") ?>

<pre>
pear install -o MDB
</pre>

<p>
<?php __("(You may have to specify a path to the <tt>pear</tt> command).")?>
<?php __("If you do
not have a <tt>pear</tt> command, you should install the basic PEAR system
as packaged by your PHP or Linux distribution.  PEAR is the <b>PHP Extension
and Application Repository</b>, and provides a set of basic services for the
installation of PHP libraries such as MDB.") ?>

<p>
<?php __("If you are sure you have MDB installed, check your include path.
The include path I have is:"); ?>

<pre>
<?php echo ini_get('include_path'); ?>
</pre>

<p>
<?php __("Different paths will be separated with colons, or semicolons on windows).") ?>

<p>
<?php __("Please check that there is a file <tt>MDB.php</tt> in one of the
directories listed above.  If your <tt>MDB.php</tt> file is not in any of
the above locations, or <i>no</i> include path is shown above, you will need
to configure one in your system's <tt>php.ini</tt> file. Unfortunately, the
location for this file varies between Operating Systems and distributions,
so you may have to consult your system documentation or use a file searching
command to find it.") ?>

<p>
<?php __("Once you have found your <tt>php.ini</tt> file, you will need to edit it
using a text editor and modify the <tt>include_path</tt> parameter (search
for it in the <tt>php.ini</tt> file) to include the necessary paths.") ?>

<p>
<?php __("If you have verified that MDB.php exists in a directory specified in
your include_path but you are still seeing this error message, please send
an e-mail to <tt>irm-discuss@lists.sf.net</tt> with relevant information
such as OS and versions of relevant software, and we'll try to help you out.") ?>

</body>
</html>
<?php
}

require_once 'include/irm.inc';

error_reporting(E_ALL);
require_once 'lib/Config.php';
require_once 'lib/Databases.php';

function health_error($msg)
{
	return sprintf("<b>%s</b> %s<br>\n", _("ERROR:"), $msg);
}

if (@$_REQUEST['submit'] == _('Health Check'))
{
	$err = false;
	
	$RUNMSG = '';
	if (!function_exists('mysql_connect'))
	{
		$RUNMSG .= health_error(_("You do not appear to have the MySQL module installed."));
		$err = true;
	}
	
	if (@$tricksy_hiddens !== 'Precioussss')
	{
		$RUNMSG .= health_error(_("GPC variables not being registered globally."));
		$err = true;
	}

	if ((basename(@$_SERVER['SCRIPT_FILENAME']) != 'admin.php') && (basename(@$_SERVER['PATH_TRANSLATED']) != 'admin.php'))
	{
		$RUNMSG .= health_error(_("Your webserver isn't providing SCRIPT_FILENAME or PATH_TRANSLATED.  Please report a bug giving your OS and Webserver information."));
		$err = true;
	}

	if (!preg_match('/(\.[:;])|([:;]\.)/', ini_get('include_path')))
	{
		$RUNMSG .= health_error(_("The current directory ('.') does not appear to be in your include_path."));
		$err = true;
	}

	$verbits = explode('.', PHP_VERSION);
	if (($verbits[0] < 4) || ($verbits[0] == 4 && $verbits[1] < 1))
	{
		$RUNMSG .= health_error(_("IRM requires a minimum PHP version of 4.1.0."));
		$err = true;
	}
	
	if ($verbits[0] > 4)
	{
		$RUNMSG .= sprintf("<b>%s</b> %s<br>\n", _("WARNING"), _("IRM has not been properly tested with PHP 5.  Please report success and failure to irm-devel@lists.sf.net."));
		$err = true;
	}

	if (!file_exists(ini_get('session.save_path')))
	{
		$RUNMSG .= health_error(_("Your configured session save path is invalid!"));
		$err = true;
	}

	if ($err)
	{
		$RUNMSG .= _("There were problems detected.")."<br>\n";
	}
	else
	{
		$RUNMSG .= _("Your server appears healthy.  Enjoy IRM!")."<br>\n";
	}
}

if (@$_REQUEST['submit'] == 'Install')
{
	$cfg = Config::ReadConfig('database');
	$dbname = $cfg[$_REQUEST['init_db']]['name'];
	
	$DB = MDB::Connect($cfg[$_REQUEST['init_db']]['DSN']);
	if (MDB::isError($DB))
	{
		trigger_error($DB->getMessage()."\n".$DB->getUserInfo(), E_USER_ERROR);
	}
	$DB->setErrorHandling(PEAR_ERROR_RETURN);
	
	require_once 'database/install.php';
	
	foreach ($INSTALL as $q)
	{
		$err = $DB->query($q);
		if (MDB::isError($err))
		{
			trigger_error(_("Installation Query Failed: ") . $err->getMessage()."\n".$err->getUserInfo(), E_USER_ERROR);
		}
	}

	$DB->disconnect();
	unset($DB);

	$RUNMSG = sprintf("The database '%s' has been initialised.", $dbname);
}

if(@$_REQUEST['submit'] == "Upgrade")
{
	$cfg = Config::ReadConfig('database');
	$dbname = $cfg[$_REQUEST['upgrade_db']]['name'];
	
	$DB = MDB::Connect($cfg[$_REQUEST['upgrade_db']]['DSN']);
	if (MDB::isError($DB))
	{
		trigger_error(_("Database connection failed: ").$DB->getMessage()."\n".$DB->getUserInfo(), E_USER_ERROR);
	}

	require_once 'database/upgrades.php';

	$DB->setErrorHandling(PEAR_ERROR_RETURN);
	// 1.5.2+
	$curver = $DB->getOne("SELECT value FROM config WHERE variable='dbver'");
	if (MDB::isError($curver))
	{
		// Covers most versions
		$curver = $DB->getOne("SELECT version FROM config");
		if (MDB::isError($curver) && $curver->getCode() == MDB_ERROR_NOSUCHTABLE)
		{
			// Pre 1.3.1
			$curver = $DB->getOne("SELECT number FROM version");
		}
	}

	if (MDB::isError($curver))
	{
		echo $curver->getMessage()."\n".$curver->getUserInfo()."\n";
		die (_("Failed to obtain version number.  This may not be an IRM database, or your version of IRM may be very, very old.  Upgrades from versions of IRM prior to 1.3.0 are not supported.")."<br>\n");
	}
	
	$bits = explode('.', $curver);
	if ($bits[0] < 1 || ($bits[0] == 1 && $bits[1] < 3))
	{
		die(_("Sorry, your IRM database is pre-1.3.0.  Upgrades from versions of IRM prior to 1.3.0 are not supported, due to massive and catastrophic changes to the database format.")."<br>\n");
	}

	$upgrading = false;
	$RUNMSG = '';
	foreach ($UPGRADES as $ver => $queries)
	{
		if ($ver == $curver)
		{
			$upgrading = true;
		}
		
		if ($upgrading)
		{
			$RUNMSG .= sprintf(_("Running upgrade for %s"), $ver)."<br>\n";
			foreach ($queries as $q)
			{
				$err = $DB->query($q);
				if (MDB::isError($err))
				{
					trigger_error(sprintf(_("Upgrade query failed for %s: %s"), $ver, $err->getMessage() . "\n" . $err->getUserInfo()), E_USER_ERROR);
				}
			}
		}
	}
	

	$DB->disconnect();
	unset($DB);

	$RUNMSG .= sprintf(_("The database '%s' has been upgraded to the current system version."), $dbname);
}
	
?>
<HTML>
<HEAD>
<TITLE> <?php printf(_("Setup IRM version %s"), Config::Version()) ?></TITLE>
  <style type="text/css">
  //<!-- 
  body 
  {  
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    background-color: white;
  }

  th   
  {  
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt; 
    font-weight: bold;
    background-color: #D3DCE3;
  }

  td
  {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
  }
 
  form
  {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
  }

  h1
  {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16pt;
    font-weight: bold;
  }

  A:link
  {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    text-decoration: none;
    color: blue;
  }
  A:visited
  {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    text-decoration: none;
    color: blue;
  }
  A:hover
  {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    text-decoration: underline;
    color: red;
  }

  A:link.nav
  {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #000000;
  }

  A:visited.nav
  {
    font-family: Verdana, Arial, Helvetica, sans-serif;
     color: #000000;
  }

  A:hover.nav
  {
    font-family: Verdana, Arial, Helvetica, sans-serif;
     color: red;
  }

  .nav
  {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #000000;
  }

  //-->
  </style>
</head>
<BODY>
  <img src=irm-jr1.jpg>
  <BR>
<?php
	if(@$RUNMSG)
	{
		print "<BR>
		$RUNMSG
		<BR>
		";
	}

?>

  <hr>
  <CENTER><h2><?php __("Health Check") ?></h2></CENTER>
  <p>
  <?php __("We provide a free \"health check\" for your web server to see if some common
  problems exist.  If there are errors, you may have problems running IRM.") ?>

  <form method="POST" ACTION="admin.php">
    <input type="submit" name="submit" value="<?php __("Health Check") ?>">
    <input type="hidden" name="tricksy_hiddens" value="Precioussss">
  </form>
  
<?php
	if (Config::onWindows())
	{
		echo "<p>";
		__("I have detected that you are running on some form of Windows system.");
	}
	else
	{
		echo "<p>";
		__("I have detected that you are running on a Unix-liks system (Linux, Mac OS X, etc).");
	}
?>
<p><?php __("If this autodetection is not correct, we have a serious problem.  Please report a bug."); ?>

<?php
	$dblist = Databases::Uninitialised();
	
	if ($dblist)
	{
	?>
		<hr>
		<CENTER><H2><?php __("New Install") ?></H2></CENTER>
		<form method="POST" action="admin.php">
		<p>
		<?php __("Select a database to initialise.") ?>
		<p>
		<b><?php __("Warning:")?></b> <?php __("The database you initialise will be totally destroyed.") ?>
		<select name="init_db">
		<?php
		
		$dblist = Databases::Uninitialised();

		foreach ($dblist as $f => $v)
		{
			echo "<option value=\"$f\">$v</option>\n";
		}
		?>
		</select>
		<input type="submit" name="submit" value="<?php __("Install") ?>">
		</form>
	<?php
	}
	?>
		<hr>
		<CENTER><H2><?php __("Upgrade") ?></H2></CENTER>
		<form method="POST" action="admin.php">
		<?php __("Please select a database to upgrade.  If the database
			 is up to date,	no changes will be applied.") ?>
		<SELECT NAME="upgrade_db">
		<?php
		
		$dblist = Databases::All();

		foreach ($dblist as $f => $v)
		{
			echo "<option value=\"$f\">$v</option>\n";
		}
		?>
		</SELECT>
		<input type="submit" name="submit" value="<?php __("Upgrade") ?>">
		</form>

<hr noshade>
<br>
</font>
<i>
	<?php printf(_("IRM Version %s"), '<b>'.Config::Version().'</b>') ?>
</i>
<a href="http://irm.schoenefeld.org/"><?php __("IRM Website") ?></a>
<br>IRM is protected by the 
		<a href="<?php echo Config::AbsLoc('docs/COPYING'); ?>">GNU GPL License</a>.
		&copy; 1999,2003 <a href="<?php echo Config::AbsLoc('docs/AUTHORS'); ?>">Yann Ramin, Keith Schoenefeld, and others</a>

<a href="mailto:atrus@atrustrivalie.org">atrus@atrustrivalie.org</a>.<br>
</body>
</html>