29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-29 16:43:42 +00:00

Turn off installation folder check

git-svn-id: http://joomlacode.org/svn/joomla/development/trunk@8173 6f6e1ebd-4c2b-0410-823f-f34bde69bce9
This commit is contained in:
Andrew Eddie 2007-07-23 00:34:50 +00:00
parent a57249af2c
commit b238e5021a
3 changed files with 6 additions and 6 deletions

View File

@ -25,8 +25,8 @@ defined( '_JEXEC' ) or die( 'Restricted access' );
* Installation check, and check on removal of the install directory.
*/
if (!file_exists( JPATH_CONFIGURATION . DS . 'configuration.php' ) || (filesize( JPATH_CONFIGURATION . DS . 'configuration.php' ) < 10) || file_exists( JPATH_INSTALLATION . DS . 'index.php' )) {
header( 'Location: ../installation/index.php' );
exit();
//header( 'Location: ../installation/index.php' );
//exit();
}
/*

View File

@ -25,8 +25,8 @@ defined( '_JEXEC' ) or die( 'Restricted access' );
* Installation check, and check on removal of the install directory.
*/
if (!file_exists( JPATH_CONFIGURATION . DS . 'configuration.php' ) || (filesize( JPATH_CONFIGURATION . DS . 'configuration.php' ) < 10) || file_exists( JPATH_INSTALLATION . DS . 'index.php' )) {
header( 'Location: installation/index.php' );
exit();
//header( 'Location: installation/index.php' );
//exit();
}
/*

View File

@ -24,8 +24,8 @@ defined( '_JEXEC' ) or die( 'Restricted access' );
if (!file_exists( JPATH_CONFIGURATION . DS . 'configuration.php' ) || (filesize( JPATH_CONFIGURATION . DS . 'configuration.php' ) < 10)) {
// TODO: Throw 500 error
header( 'Location: ../installation/index.php' );
exit();
//header( 'Location: ../installation/index.php' );
//exit();
}
/*