Skip to content

Fix PHP PATH_INFO #1525

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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;