Project

General

Profile

Actions

Bug #16738

closed

extension manager not working

Added by Kalin Stoyanov over 17 years ago. Updated about 17 years ago.

Status:
Closed
Priority:
Should have
Category:
Extension Manager
Target version:
-
Start date:
2006-11-26
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.0
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:

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)


Related issues 1 (0 open1 closed)

Is duplicate of TYPO3 Core - Bug #15950: Extension manager link in BE-Navigation wont launch extension managerClosedMichael Stucki2006-03-30

Actions
Actions #1

Updated by Michael Stucki over 17 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.

Actions #2

Updated by Kalin Stoyanov over 17 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.

Actions #3

Updated by Fred Weil over 17 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

Actions #4

Updated by Diego Leon over 17 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?

Actions #5

Updated by Tennyson Varghese over 17 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.

Actions #6

Updated by Staffan Ericsson over 17 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

Actions #7

Updated by Zordan Arres over 17 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.

Actions #8

Updated by Niels Lynggaard over 17 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.

Actions #9

Updated by Zordan Arres over 17 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 = '';
}

See also http://www.typo3.net/forum/list/list_post//43905/

Actions

Also available in: Atom PDF