mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
101 lines
2.7 KiB
PHP
101 lines
2.7 KiB
PHP
|
#!/usr/bin/php5
|
||
|
<?php
|
||
|
/**
|
||
|
* Main file that handles every page request.
|
||
|
*/
|
||
|
|
||
|
$_SERVER['HTTP_HOST'] = $_SERVER['argv'][2];
|
||
|
$_SERVER['SCRIPT_FILENAME'] = __FILE__;
|
||
|
chdir(dirname($_SERVER['SCRIPT_FILENAME']));
|
||
|
|
||
|
require_once("core/Core.php");
|
||
|
|
||
|
header("Content-type: text/html; charset=\"utf-8\"");
|
||
|
if(function_exists('mb_http_output')) {
|
||
|
mb_http_output('UTF-8');
|
||
|
mb_internal_encoding('UTF-8');
|
||
|
}
|
||
|
|
||
|
// figure out the server configuration
|
||
|
if( preg_match( '/(test\.totallydigital\.co\.nz|dev\.totallydigital\.co\.nz\/test)(.*)/', $_SERVER['SCRIPT_FILENAME'], $nameMatch ) ) {
|
||
|
$_SERVER['SCRIPT_NAME'] = $nameMatch[2];
|
||
|
$_SERVER['HTTP_HOST'] = $nameMatch[1];
|
||
|
} elseif( preg_match( '/dev\.totallydigital\.co\.nz(.*)/', $_SERVER['SCRIPT_FILENAME'], $nameMatch ) )
|
||
|
$_SERVER['SCRIPT_NAME'] = $nameMatch[1];
|
||
|
elseif( preg_match( '/\/sites\/[^\/]+\/www(.*)/', $_SERVER['SCRIPT_FILENAME'], $nameMatch ) )
|
||
|
$_SERVER['SCRIPT_NAME'] = $nameMatch[1];
|
||
|
elseif( preg_match( '/\/sites\/[^\/]+(.*)/', $_SERVER['SCRIPT_FILENAME'], $nameMatch ) )
|
||
|
$_SERVER['SCRIPT_NAME'] = $nameMatch[1];
|
||
|
elseif(!isset($_SERVER['SCRIPT_NAME'])) {
|
||
|
echo "Error: could not determine server configuration {$_SERVER['SCRIPT_FILENAME']}\n";
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
$baseURL = dirname( dirname( $_SERVER['SCRIPT_NAME'] ) );
|
||
|
|
||
|
if($_REQUEST && get_magic_quotes_gpc()) {
|
||
|
stripslashes_recursively($_REQUEST);
|
||
|
}
|
||
|
|
||
|
if($_REQUEST['trace']) apd_set_pprof_trace();
|
||
|
|
||
|
|
||
|
require_once("core/ManifestBuilder.php");
|
||
|
require_once("core/ClassInfo.php");
|
||
|
require_once('core/Object.php');
|
||
|
require_once('core/control/Director.php');
|
||
|
require_once('filesystem/Filesystem.php');
|
||
|
require_once("core/Session.php");
|
||
|
|
||
|
Session::start();
|
||
|
|
||
|
$envFiles = array('../_ss_environment.php', '../../_ss_environment.php', '../../../_ss_environment.php');
|
||
|
foreach($envFiles as $envFile) {
|
||
|
if(file_exists($envFile)) {
|
||
|
include($envFile);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if(ManifestBuilder::staleManifest()){
|
||
|
ManifestBuilder::compileManifest();
|
||
|
}
|
||
|
|
||
|
require_once(MANIFEST_FILE);
|
||
|
|
||
|
if($_GET['debugmanifest']) Debug::show(file_get_contents(MANIFEST_FILE));
|
||
|
|
||
|
// Default director
|
||
|
Director::addRules(10, array(
|
||
|
'Security/$Action' => 'Security',
|
||
|
'db/$Action' => 'DatabaseAdmin',
|
||
|
'$Controller/$Action/$ID/$OtherID' => '*',
|
||
|
'images/$Action/$Class/$ID/$Field' => 'Image_Uploader',
|
||
|
'' => '->home/',
|
||
|
'$URLSegment/$Action/$ID/$OtherID' => 'ModelAsController',
|
||
|
));
|
||
|
|
||
|
// Load error handlers
|
||
|
Debug::loadErrorHandlers();
|
||
|
|
||
|
// Connect to database
|
||
|
require_once("core/model/DB.php");
|
||
|
|
||
|
DB::connect($databaseConfig);
|
||
|
|
||
|
|
||
|
// Get the request URL
|
||
|
// $baseURL = dirname(dirname($_SERVER[SCRIPT_NAME]));
|
||
|
$url = $_GET['url'];
|
||
|
$url = $_SERVER['argv'][1];
|
||
|
|
||
|
|
||
|
|
||
|
// Direct away - this is the "main" function, that hands control to the apporopriate controllerx
|
||
|
$dir = new Director();
|
||
|
$dir->direct($url);
|
||
|
|
||
|
|
||
|
|
||
|
?>
|