Bug #15644
closedCan't install ADOdb
0%
Description
Whenn I try to install ADOdb 4.71.1 under typo3 4.0beta3 I always get the following error:
Dependency Error:
Extension "php" was not available in the system. Please import it from the TYPO3 Extension Repository.
Extension "typo3" was not available in the system. Please import it from the TYPO3 Extension Repository.
Try to install ADOdb.
I think the new ext_emconf - format is the problem. In this file of ADOdb stands:
'constraints' => array(
'depends' => array(
'php' => '',
'typo3' => '',
),
'conflicts' => array(
),
),
and in typo3/mod/tools/em/index.php by the line 3377 (if($depK 'php' && $depV)) the var $depV is empty and on line 3389 (elseif($depK 'typo3' && $depV)) the var $depV is also empty so line 3400 (elseif (!t3lib_extMgm::isLoaded($depK))) comes to execution, which produces the above names error.
(issue imported from #M2589)
Updated by Joerg Schoppet almost 19 years ago
One possibility would be to alter the function fixEMCONF().
Updated by Karsten Dambekalns almost 19 years ago
This is fixed locally in the EM, I will put it into CVS before RC1. Not limited to the adodb extension.
Updated by Joerg Schoppet over 18 years ago
When will you put it into CVS? I just tried an actual snapshot of the TYPO3_4.0 branch and it still doesn't work.