Bug #14307
closedphpversion does not work with PHP Version 4.3.8-8.dotdeb.1
0%
Description
There is a check for the php-Version running in latest cvs-files.
PHP Version 4.3.8-8.dotdeb.1 will not be detected correctly and the programm stops with a 'die' (php 4.1.0+ needed).
Install PHP Version 4.3.8-8.dotdeb.1, install latest cvs, and hit any page of your T3 System
(issue imported from #M344)
Updated by Hans J about 20 years ago
Workaround:
comment the line 199 in /typo3/init.php and 118 in /typo3/sysext/cms/tslib/index_ts.php
or
solution:
correct the if (t3lib_div::int_from_ver(phpversion())<4100000) to if (t3lib_div::int_from_ver(phpversion())<4001000)
edited on: 09.09.04 10:52
Updated by Hans J about 20 years ago
o.k. someone made the correction in cvs for /typo3/init.php, but the bug still resists in /typo3/sysext/cms/tslib/index_ts.php!!
Updated by Ingmar Schlecht about 20 years ago
Kasper has fixed this, at least for normal version numbers like 4.3.0 it works now.
However, I don't know, if it works with rather strange version numbers like 4.3.8-8.dotdeb.1.
If it does not, please reopen this bug.