[TYPO3-linux] FW: move version 3.6.2 to a new debian server [Is working now]
Sergey Alexandrov
serg at alexandrov.us
Mon Sep 13 19:06:41 CEST 2010
It does work with PHP5 version < 5.3 :
http://www.php.net/manual/en/ini.core.php#ini.register-long-arrays
:)
-----Original Message-----
From: typo3-linux-bounces at lists.typo3.org
[mailto:typo3-linux-bounces at lists.typo3.org] On Behalf Of Shaekir Ramses
Sent: Monday, September 13, 2010 12:58 PM
To: typo3-linux at lists.typo3.org
Subject: [TYPO3-linux] FW: move version 3.6.2 to a new debian server [Is
working now]
Dear All,
I got the answer:
The main problem,
Typo3.6.2 has $HTTP_POST_FILES, $HTTP_Get_VARS,
$HTTP_POST_VARS, $HTTP_SERVER_VARS
and those are not working with php5 .
Then I changed them to be $_FILES, $_Get, $_POST,
$_POST, $_SERVER by using grep command
cd /my
path/typo3/typo3_src-3.6.2
grep -rl
'$HTTP_POST_FILES' ./ | xargs sed -i 's/\$HTTP_POST_FILES/$_FILES/g'
grep -rl
'$HTTP_GET_VARS' ./ | xargs sed -i 's/\$HTTP_Get_VARS/$_Get/g'
grep -rl
'$HTTP_POST_VARS' ./ | xargs sed -i 's/\$HTTP_POST_VARS/$_POST/g'
grep -rl
'$HTTP_SERVER_VARS' ./ | xargs sed -i 's/\$HTTP_SERVER_VARS/$_SERVER/g'
and typo3.6.2 is working fine now with php5.
If there are any restrictions or advices , please don't hesitate to email
me.
Best wishes,
Shaekir Khzym,
More information about the TYPO3-linux
mailing list