Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions server.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
<?php


// FIX PHP PATH_INFO

$originalRequestUri = $_SERVER['REQUEST_URI'];
$path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);

// Needs patch
if (substr($path, -strlen($_SERVER['PATH_INFO'])) == $_SERVER['PATH_INFO']) {
// Cut away PHP PATH_INFO from REQUEST_URI to find the correct file later
$_SERVER['REQUEST_URI'] =
substr($path, 0, -strlen($_SERVER['PATH_INFO'])) // Remove PATH_INFO: page.php/remove/additional/path
. substr($_SERVER['REQUEST_URI'], strlen($path)); // Restore GET parameters '?param=what&ever=floats'
}
unset($path); // Don't leave global garbage around

// END FIX PHP PATH_INFO

require_once './cli/includes/require-drivers.php';
require_once './cli/Valet/Server.php';

Expand Down Expand Up @@ -107,4 +124,8 @@

chdir(dirname($frontControllerPath));

// After the file is found recover the original REQUEST_URI
$_SERVER['REQUEST_URI'] = $originalRequestUri;
unset($originalRequestUri); // Don't leave useless globals around

require $frontControllerPath;