Project

General

Profile

Actions

Bug #62409

closed

TYPO3 4.5.37 not compatible with PHP 5.2.x

Added by Jochen Weiland over 9 years ago. Updated over 9 years ago.

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

0%

Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.2
Tags:
Complexity:
easy
Is Regression:
No
Sprint Focus:

Description

On typo3.org the system requirements for TYPO3 4.5 state a minimum version of PHP 5.2.

After upgrading a system from 4.5.36 to 4.5.37 I encountered the following error message in FE:

Fatal error: func_get_args(): Can't be used as a function parameter in t3lib/class.t3lib_div.php on line 5432

The function func_get_args() can't be used as a function parameter in PHP < 5.3. In PHP versions <= 5.2 the output of the function needs to be saved to a variable which then can be used as parameter.

Possible fix (of course a better fix is to switch to PHP 5.3 or higher):

Replace

$instance = self::instantiateClass($finalClassName, func_get_args());

with

$v = func_get_args();
$instance = self::instantiateClass($finalClassName, $v);

Related issues 1 (0 open1 closed)

Is duplicate of TYPO3 Core - Bug #62391: TYPO3 4.5.37 requires PHP 5.3Closed2014-10-22

Actions
Actions #1

Updated by Markus Klein over 9 years ago

  • Status changed from New to Closed

Hi Jochen, this is already fixed in the 4.5 branch with #62391.

Closing this as duplicate.

Actions #2

Updated by Martin Bless over 9 years ago

Just for info and completeness: Another workaround seems to be

$TYPO3_CONF_VARS['SYS']['exceptionalErrors'] ^=  E_STRICT;

in the localconf.php.

See: http://mbless.de/blog/2014/09/25/typo3-strict-standards-trouble.html

Actions #3

Updated by Martin Bless over 9 years ago

Oops, I just noticed, that the problem I'm writing about in my blog is something different.
But I guess it has the same underlying reason (strict standards becoming active).

See: http://mbless.de/blog/2014/09/25/typo3-strict-standards-trouble.html

Actions

Also available in: Atom PDF