git-svn-id: https://192.168.0.254/svn/Proyectos.MatritumCantat_Web/trunk@2 8e3496fd-7892-4c45-be36-0ff06e9dacc6
378 lines
11 KiB
PHP
378 lines
11 KiB
PHP
<?php
|
|
/**
|
|
* @version $Id: index.php 7424 2007-05-17 15:56:10Z robs $
|
|
* @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.
|
|
*/
|
|
|
|
// Set flag that this is a parent file
|
|
define( '_VALID_MOS', 1 );
|
|
|
|
if (file_exists( '../configuration.php' ) && filesize( '../configuration.php' ) > 10) {
|
|
header( "Location: ../index.php" );
|
|
exit();
|
|
}
|
|
require( '../globals.php' );
|
|
require_once( '../includes/version.php' );
|
|
|
|
/** Include common.php */
|
|
include_once( 'common.php' );
|
|
view();
|
|
|
|
/*
|
|
* Added 1.0.11
|
|
*/
|
|
function view() {
|
|
$sp = ini_get( 'session.save_path' );
|
|
|
|
$_VERSION = new joomlaVersion();
|
|
$versioninfo = $_VERSION->RELEASE .'.'. $_VERSION->DEV_LEVEL .' '. $_VERSION->DEV_STATUS;
|
|
$version = $_VERSION->PRODUCT .' '. $_VERSION->RELEASE .'.'. $_VERSION->DEV_LEVEL .' '. $_VERSION->DEV_STATUS.' [ '.$_VERSION->CODENAME .' ] '. $_VERSION->RELDATE .' '. $_VERSION->RELTIME .' '. $_VERSION->RELTZ;
|
|
|
|
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">
|
|
<div class="install">
|
|
<div id="stepbar">
|
|
<div class="step-on">pre-installation check</div>
|
|
<div class="step-off">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">pre-installation check</div>
|
|
|
|
<div class="far-right">
|
|
<input name="Button2" type="submit" class="button" value="Next >>" onclick="window.location='install.php';" />
|
|
<br/>
|
|
<br/>
|
|
<input type="button" class="button" value="Check Again" onclick="window.location=window.location" />
|
|
</div>
|
|
<div class="clr"></div>
|
|
|
|
<h1 style="text-align: center; border-bottom: 0px;">
|
|
<?php echo $version; ?>
|
|
</h1>
|
|
|
|
<h1>
|
|
Required Settings Check:
|
|
</h1>
|
|
|
|
<div class="install-text">
|
|
<p>
|
|
If any of these items are highlighted in red then please take actions to correct them.
|
|
</p>
|
|
<p>
|
|
Failure to do so could lead to your Joomla! installation not functioning correctly.
|
|
</p>
|
|
<div class="ctr"></div>
|
|
</div>
|
|
|
|
<div class="install-form">
|
|
<div class="form-block">
|
|
<table class="content">
|
|
<tr>
|
|
<td class="item">
|
|
PHP version >= 4.1.0
|
|
</td>
|
|
<td align="left">
|
|
<?php echo phpversion() < '4.1' ? '<b><font color="red">No</font></b>' : '<b><font color="green">Yes</font></b>';?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
- zlib compression support
|
|
</td>
|
|
<td align="left">
|
|
<?php echo extension_loaded('zlib') ? '<b><font color="green">Available</font></b>' : '<b><font color="red">Unavailable</font></b>';?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
- XML support
|
|
</td>
|
|
<td align="left">
|
|
<?php echo extension_loaded('xml') ? '<b><font color="green">Available</font></b>' : '<b><font color="red">Unavailable</font></b>';?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
- MySQL support
|
|
</td>
|
|
<td align="left">
|
|
<?php echo function_exists( 'mysql_connect' ) ? '<b><font color="green">Available</font></b>' : '<b><font color="red">Unavailable</font></b>';?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top" class="item">
|
|
configuration.php
|
|
</td>
|
|
<td align="left">
|
|
<?php
|
|
if (@file_exists('../configuration.php') && @is_writable( '../configuration.php' )){
|
|
echo '<b><font color="green">Writeable</font></b>';
|
|
} else if (is_writable( '..' )) {
|
|
echo '<b><font color="green">Writeable</font></b>';
|
|
} else {
|
|
echo '<b><font color="red">Unwriteable</font></b><br /><span class="small">You can still continue the install as the configuration will be displayed at the end, just copy & paste this and upload.</span>';
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="item">
|
|
Session save path
|
|
</td>
|
|
<td align="left" valign="top">
|
|
<?php echo is_writable( $sp ) ? '<b><font color="green">Writeable</font></b>' : '<b><font color="red">Unwriteable</font></b>';?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="item" colspan="2">
|
|
<b>
|
|
<?php echo $sp ? $sp : 'Not set'; ?>
|
|
</b>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="clr"></div>
|
|
|
|
<?php
|
|
$wrongSettingsTexts = array();
|
|
|
|
if ( ini_get('magic_quotes_gpc') != '1' ) {
|
|
$wrongSettingsTexts[] = 'PHP magic_quotes_gpc setting is `OFF` instead of `ON`';
|
|
}
|
|
if ( ini_get('register_globals') == '1' ) {
|
|
$wrongSettingsTexts[] = 'PHP register_globals setting is `ON` instead of `OFF`';
|
|
}
|
|
|
|
if ( count($wrongSettingsTexts) ) {
|
|
?>
|
|
<h1>
|
|
Security Check:
|
|
</h1>
|
|
|
|
<div class="install-text">
|
|
<p>
|
|
Following PHP Server Settings are not optimal for <strong>Security</strong> and it is recommended to change them:
|
|
</p>
|
|
<p>
|
|
Please check <a href="http://forum.joomla.org/index.php/topic,81058.0.html" target="_blank">the Official Joomla! Server Security post</a> for more information.
|
|
</p>
|
|
<div class="ctr"></div>
|
|
</div>
|
|
|
|
<div class="install-form">
|
|
<div class="form-block" style=" border: 1px solid #cc0000; background: #ffffcc;">
|
|
<table class="content">
|
|
<tr>
|
|
<td class="item">
|
|
<ul style="margin: 0px; padding: 0px; padding-left: 5px; text-align: left; padding-bottom: 0px; list-style: none;">
|
|
<?php
|
|
foreach ($wrongSettingsTexts as $txt) {
|
|
?>
|
|
<li style="min-height: 25px; padding-bottom: 5px; padding-left: 25px; color: red; font-weight: bold; background-image: url(../includes/js/ThemeOffice/warning.png); background-repeat: no-repeat; background-position: 0px 2px;" >
|
|
<?php
|
|
echo $txt;
|
|
?>
|
|
</li>
|
|
<?php
|
|
}
|
|
?>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="clr"></div>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<h1>
|
|
Recommended Settings Check:
|
|
</h1>
|
|
|
|
<div class="install-text">
|
|
<p>
|
|
These settings are recommended for PHP in order to ensure full
|
|
compatibility with Joomla!.
|
|
</p>
|
|
<p>
|
|
However, Joomla! will still operate if your settings do not quite match the recommended
|
|
</p>
|
|
<div class="ctr"></div>
|
|
</div>
|
|
|
|
<div class="install-form">
|
|
<div class="form-block">
|
|
|
|
<table class="content">
|
|
<tr>
|
|
<td class="toggle" width="500px">
|
|
Directive
|
|
</td>
|
|
<td class="toggle">
|
|
Recommended
|
|
</td>
|
|
<td class="toggle">
|
|
Actual
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
$php_recommended_settings = array(array ('Safe Mode','safe_mode','OFF'),
|
|
array ('Display Errors','display_errors','ON'),
|
|
array ('File Uploads','file_uploads','ON'),
|
|
array ('Magic Quotes GPC','magic_quotes_gpc','ON'),
|
|
array ('Magic Quotes Runtime','magic_quotes_runtime','OFF'),
|
|
array ('Register Globals','register_globals','OFF'),
|
|
array ('Output Buffering','output_buffering','OFF'),
|
|
array ('Session auto start','session.auto_start','OFF'),
|
|
);
|
|
|
|
foreach ($php_recommended_settings as $phprec) {
|
|
?>
|
|
<tr>
|
|
<td class="item">
|
|
<?php echo $phprec[0]; ?>:
|
|
</td>
|
|
<td class="toggle">
|
|
<?php echo $phprec[2]; ?>:
|
|
</td>
|
|
<td>
|
|
<b>
|
|
<?php
|
|
if ( get_php_setting($phprec[1]) == $phprec[2] ) {
|
|
?>
|
|
<font color="green">
|
|
<?php
|
|
} else {
|
|
?>
|
|
<font color="red">
|
|
<?php
|
|
}
|
|
echo get_php_setting($phprec[1]);
|
|
?>
|
|
</font>
|
|
</b>
|
|
<td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="clr"></div>
|
|
|
|
<h1>
|
|
Directory and File Permissions Check:
|
|
</h1>
|
|
|
|
<div class="install-text">
|
|
<p>
|
|
In order for Joomla! to function correctly it needs to be able to access or write to certain files or directories.
|
|
</p>
|
|
<p>
|
|
If you see "Unwriteable" you need to change the permissions on the file or directory to allow Joomla! to write to it.
|
|
</p>
|
|
<div class="clr"> </div>
|
|
<div class="ctr"></div>
|
|
</div>
|
|
|
|
<div class="install-form">
|
|
<div class="form-block">
|
|
<table class="content">
|
|
<?php
|
|
writableCell( 'administrator/backups' );
|
|
writableCell( 'administrator/components' );
|
|
writableCell( 'administrator/modules' );
|
|
writableCell( 'administrator/templates' );
|
|
writableCell( 'cache' );
|
|
writableCell( 'components' );
|
|
writableCell( 'images' );
|
|
writableCell( 'images/banners' );
|
|
writableCell( 'images/stories' );
|
|
writableCell( 'language' );
|
|
writableCell( 'mambots' );
|
|
writableCell( 'mambots/content' );
|
|
writableCell( 'mambots/editors' );
|
|
writableCell( 'mambots/editors-xtd' );
|
|
writableCell( 'mambots/search' );
|
|
writableCell( 'mambots/system' );
|
|
writableCell( 'media' );
|
|
writableCell( 'modules' );
|
|
writableCell( 'templates' );
|
|
?>
|
|
</table>
|
|
</div>
|
|
<div class="clr"></div>
|
|
</div>
|
|
|
|
|
|
<div class="clr"></div>
|
|
</div>
|
|
<div class="clr"></div>
|
|
</div>
|
|
</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>
|
|
<?php
|
|
}
|
|
|
|
function get_php_setting($val) {
|
|
$r = (ini_get($val) == '1' ? 1 : 0);
|
|
return $r ? 'ON' : 'OFF';
|
|
}
|
|
|
|
function writableCell( $folder, $relative=1, $text='' ) {
|
|
$writeable = '<b><font color="green">Writeable</font></b>';
|
|
$unwriteable = '<b><font color="red">Unwriteable</font></b>';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="item">' . $folder . '/</td>';
|
|
echo '<td align="right">';
|
|
if ( $relative ) {
|
|
echo is_writable( "../$folder" ) ? $writeable : $unwriteable;
|
|
} else {
|
|
echo is_writable( "$folder" ) ? $writeable : $unwriteable;
|
|
}
|
|
echo '</tr>';
|
|
}
|
|
?>
|