Bug #16738
closedextension manager not working
0%
Description
I installed the 4.0.2 yesterday and everything is working fine you guys did a great job, but I can't get the Extension manger working. It doesn’t deliver any output like error or warning. Any HTML output is also missing.
So I decided to look in the code and if I comment the row
//$SOBE->main(); in the ../typo3/mod/tools/em/index.php
I'm able to get some output, but still not the content.
Running:
RedHat 9.0
Apache 2.0.4
PHP 4.2.2 (60 sec. exec. time and 18M memory)
MySQL 4.1.21
Admin conf value -> open_basedir is set (disabling doesn't help)
(issue imported from #M4557)
Updated by Michael Stucki almost 18 years ago
I think the memory limit is still too low. Try setting it to 50M (just to be sure that this is not the problem) and check if it's working.
Updated by Kalin Stoyanov almost 18 years ago
Limit was set to 50M, but still missing any output from the server.
I set the error_reporting to E_ALL, but I can't see any error.
Updated by Fred Weil almost 18 years ago
Am having the same problem.
Memory limit set to 50Mb
I have commented out //$SOBE->main(); in the ../typo3/mod/tools/em/index.php
Still blank.
Redhat 9
PHP_VERSION : 4.2.2
MySQL - 3.23.54
Apache/2.0.40
Updated by Diego Leon almost 18 years ago
I'm install TYPO3 4.0.3
All work fine but when i click at left frame "Ext Manager", say "The page cannot be shown".
Another thing: Although i had install the TYPO3 4.0.3 version the BE page show "TYPO3 4.0.2 Web Content Management System" ¿Why?
Updated by Tennyson Varghese almost 18 years ago
Here also the same thing happens. I tried 4.0.1 and 4.0.2 but problem is that EM not shown. In debian gnu/linux 3.1 there is no such problem.
Updated by Staffan Ericsson almost 18 years ago
Look at bug report
http://bugs.typo3.org/view.php?id=2615
Similiar problem. Try the latest patch and run the install tool to make necessary database updates.
Tennyson: You have to use the update function in the installtool to upgrade too 4.0.3
.staffan
Updated by Zordan Arres almost 18 years ago
Same problem with typo 4.0.4 on a
RedHat 7.3 system
Php-version: 4.1.2-7.3.6
apache: 1.3.27-2
mysql: 3.23.49-3
I've tried the mentioned patch (also updated the db) but it does not solve the problem. Also different memory limits don't show any success.
I have also commented out //$SOBE->main(); in the ../typo3/mod/tools/em/index.php -> still blank.
Updated by Niels Lynggaard almost 18 years ago
I have the same problem running on 4.0.4.. The extension manager shows up, but I can't see any extensions exept the loaded ones..
search retrieves no results...
I guess for now I have to get extensions "manually" and upload them to my server.
Updated by Zordan Arres almost 18 years ago
I've fixed my problem:
it results from the php version and the function
if(version_compare($versionRange0,'3....
in the class.em_index.php in the function fixMEMCONF.
The issue can be solved by upgrading php or modifying the lines containing version_compare like this:
if(empty($versionRange1)) {
$versionRange1 = '';
}else {
if(version_compare($versionRange1,'3.0.0','<')) $versionRange1 = '';
}