2005-07-04 00:48:04 +00:00
|
|
|
<?php
|
2005-09-17 02:22:07 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
2005-05-15 21:41:38 +00:00
|
|
|
|
|
|
|
/**
|
2005-08-21 06:49:02 +00:00
|
|
|
* Short description for file.
|
|
|
|
*
|
2005-05-29 19:43:59 +00:00
|
|
|
* This file collects requests if:
|
|
|
|
* - no mod_rewrite is avilable or .htaccess files are not supported
|
|
|
|
* - /public is not set as a web root.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright (c) 2005, CakePHP Authors/Developers
|
|
|
|
*
|
|
|
|
* Author(s): Michal Tatarynowicz aka Pies <tatarynowicz@gmail.com>
|
|
|
|
* Larry E. Masters aka PhpNut <nut@phpnut.com>
|
|
|
|
* Kamil Dzielinski aka Brego <brego.dk@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2005-05-22 23:24:09 +00:00
|
|
|
* @filesource
|
2005-08-21 06:49:02 +00:00
|
|
|
* @author CakePHP Authors/Developers
|
|
|
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
|
|
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
|
|
|
* @package cake
|
|
|
|
* @since CakePHP v 0.2.9
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
2005-05-22 23:24:09 +00:00
|
|
|
* @lastmodified $Date$
|
2005-08-21 06:49:02 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-05-22 23:24:09 +00:00
|
|
|
*/
|
2005-05-29 19:43:59 +00:00
|
|
|
|
2005-05-22 23:24:09 +00:00
|
|
|
/**
|
2005-05-29 19:43:59 +00:00
|
|
|
* Get Cake's root directory
|
|
|
|
*/
|
2005-10-03 04:48:00 +00:00
|
|
|
define ('APP_DIR', 'app');
|
2005-05-22 23:24:09 +00:00
|
|
|
define ('DS', DIRECTORY_SEPARATOR);
|
|
|
|
define ('ROOT', dirname(__FILE__).DS);
|
2005-05-15 21:41:38 +00:00
|
|
|
|
2005-10-03 04:48:00 +00:00
|
|
|
require_once ROOT.APP_DIR.DS.'config'.DS.'core.php';
|
|
|
|
require_once ROOT.APP_DIR.DS.'config'.DS.'paths.php';
|
|
|
|
require_once CAKE.'basics.php';
|
2005-05-15 21:41:38 +00:00
|
|
|
/**
|
2005-05-29 19:43:59 +00:00
|
|
|
* We need to redefine some constants and variables, so that Cake knows it is
|
|
|
|
* working without mod_rewrite.
|
2005-05-17 22:04:09 +00:00
|
|
|
*/
|
2005-10-03 04:48:00 +00:00
|
|
|
//define ('BASE_URL', $_SERVER['SCRIPT_NAME']);
|
|
|
|
|
|
|
|
$uri = setUri();
|
2005-05-15 21:41:38 +00:00
|
|
|
|
2005-06-05 19:42:54 +00:00
|
|
|
/**
|
|
|
|
* As mod_rewrite (or .htaccess files) is not working, we need to take care
|
|
|
|
* of what would normally be rewrited, i.e. the static files in /public
|
|
|
|
*/
|
2005-10-03 04:48:00 +00:00
|
|
|
if ($uri === '/' || $uri === '/index.php')
|
2005-07-10 05:08:19 +00:00
|
|
|
{
|
2005-10-03 04:48:00 +00:00
|
|
|
$_GET['url'] = '/';
|
|
|
|
include_once (ROOT.APP_DIR.DS.WEBROOT_DIR.DS.'index.php');
|
2005-07-10 05:08:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-10-03 04:48:00 +00:00
|
|
|
$elements = explode('/index.php', $uri);
|
|
|
|
if(!empty($elements[1]))
|
2005-07-10 05:08:19 +00:00
|
|
|
{
|
2005-10-03 04:48:00 +00:00
|
|
|
$path = $elements[1];
|
2005-07-10 05:08:19 +00:00
|
|
|
}
|
2005-10-03 04:48:00 +00:00
|
|
|
else
|
2005-07-10 05:08:19 +00:00
|
|
|
{
|
2005-10-03 04:48:00 +00:00
|
|
|
$path = '/';
|
2005-07-10 05:08:19 +00:00
|
|
|
}
|
2005-10-03 04:48:00 +00:00
|
|
|
$_GET['url'] = $path;
|
|
|
|
|
|
|
|
include_once (ROOT.APP_DIR.DS.WEBROOT_DIR.DS.'index.php');
|
2005-07-10 05:08:19 +00:00
|
|
|
}
|
2005-05-21 16:12:57 +00:00
|
|
|
?>
|