Project

General

Profile

Actions

Bug #58358

closed

Use REDIRECT_TYPO3_CONTEXT as fallback for TYPO3_CONTEXT environment variable

Added by Steffen Müller almost 10 years ago. Updated almost 10 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
Start date:
2014-04-30
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

On certain server setups, setting ApplicationContext fails, because the environment variable TYPO3_CONTEXT is never set.

The reason is that variables set by mod_rewrite get prefixed with REDIRECT_
This seems to appear in PHP-FPM setups, which is quite popular these days.

htaccess file:
 RewriteCond %{HTTP_HOST} ^dev\.example\.com$
 RewriteRule (.*) $1 [E=TYPO3_CONTEXT:Development]
Test:
echo $_SERVER['TYPO3_CONTEXT'];

echo $_SERVER['REDIRECT_TYPO3_CONTEXT'];
Development

Flow solves this by using REDIRECT_FLOW3_CONTEXT as fallback in index.php:

$context = getenv('FLOW3_CONTEXT') ?: (getenv('REDIRECT_FLOW3_CONTEXT') ?: 'Development');

We should backport this fallback to Bootstrap.


Related issues 3 (0 open3 closed)

Related to TYPO3 Core - Bug #53188: REDIRECT_TYPO3_DISABLE_CORE_UPDATER ignoredClosed2013-11-272013-11-27

Actions
Related to TYPO3 Core - Bug #53974: Environment variables prefixed with REDIRECT_ ignoredClosed2013-11-26

Actions
Related to TYPO3 Core - Feature #91798: Use REDIRECT_TYPO3_PATH_APP - REDIRECT_TYPO3_PATH_ROOT as fallback for TYPO3_PATH_APP - TYPO3_PATH_ROOT environment variableClosed2020-07-13

Actions
Actions #1

Updated by Helmut Hummel almost 10 years ago

  • Status changed from New to Closed

Duplicate of #53188

Actions #2

Updated by Gerrit Code Review almost 10 years ago

  • Status changed from Closed to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/29742

Actions #3

Updated by Steffen Müller almost 10 years ago

Sorry Helmut, I pushed without noticing the duplicate.
Nevertheless, please don't close issues which are duplicates of yet unresolved. AFAIK the policy was to leave dups until the parent issue was resolved and then close all dups.

Beside that, I don't agree this is a duplicate, but rather an issue which is related to the parent. the pending solution of the parent does not fix this issue.

Actions #4

Updated by Steffen Müller almost 10 years ago

  • Status changed from Under Review to Needs Feedback
Actions #5

Updated by Gerrit Code Review almost 10 years ago

  • Status changed from Needs Feedback to Under Review

Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25123

Actions #6

Updated by Gerrit Code Review almost 10 years ago

Patch set 8 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25123

Actions #7

Updated by Gerrit Code Review almost 10 years ago

Patch set 9 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/25123

Actions #8

Updated by Steffen Müller almost 10 years ago

  • Status changed from Under Review to Closed
Actions #9

Updated by Benni Mack about 1 year ago

  • Related to Feature #91798: Use REDIRECT_TYPO3_PATH_APP - REDIRECT_TYPO3_PATH_ROOT as fallback for TYPO3_PATH_APP - TYPO3_PATH_ROOT environment variable added
Actions

Also available in: Atom PDF