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
|
<?php /** * @version $Id: install.php 2510 2006-02-21 04:59:41Z stingrey $ * @package Joomla * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */
if (file_exists( '../configuration.php' ) && filesize( '../configuration.php' ) > 10) { header( 'Location: ../index.php' ); exit(); } /** Include common.php */ include_once( 'common.php' ); function writableCell( $folder ) { echo "<tr>"; echo "<td class=\"item\">" . $folder . "/</td>"; echo "<td align=\"left\">"; echo is_writable( "../$folder" ) ? '<b><font color="green">Writeable</font></b>' : '<b><font color="red">Unwriteable</font></b>' . "</td>"; echo "</tr>"; } ?> <?php echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?".">"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Joomla - Web Installer</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="shortcut icon" href="../images/favicon.ico" /> <link rel="stylesheet" href="install.css" type="text/css" /> </head> <body> <div id="wrapper"> <div id="header"> <div id="joomla"><img src="header_install.png" alt="Joomla Installation" /></div> </div> </div> <div id="ctr" align="center"> <form action="install1.php" method="post" name="adminForm" id="adminForm"> <div class="install"> <div id="stepbar"> <div class="step-off">pre-installation check</div> <div class="step-on">license</div> <div class="step-off">step 1</div> <div class="step-off">step 2</div> <div class="step-off">step 3</div> <div class="step-off">step 4</div> </div> <div id="right"> <div id="step">license</div> <div class="far-right"> <input class="button" type="submit" name="next" value="Next >>"/> </div> <div class="clr"></div> <h1>GNU/GPL License:</h1> <div class="licensetext"> <a href="http://www.joomla.org">Joomla </a> is Free Software released under the GNU/GPL License. </div> <div class="clr"></div> <div class="license-form"> <div class="form-block" style="padding: 0px;"> <iframe src="gpl.html" class="license" frameborder="0" scrolling="auto"></iframe> </div> </div> <div class="clr"></div> <div class="clr"></div> </div> <div id="break"></div> <div class="clr"></div> <div class="clr"></div> </div> </form> </div> <div class="ctr"> <a href="http://www.joomla.org" target="_blank">Joomla!</a> is Free Software released under the GNU/GPL License. </div> </body> </html>
|