Project

General

Profile

Actions

Bug #30870

closed

No modules available for non-admin users

Added by Xavier Perseguers over 12 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Must have
Category:
Workspaces
Target version:
Start date:
2011-10-13
Due date:
% Done:

100%

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

Description

After upgrading from TYPO3 4.5 to TYPO3 4.6 RC1, non-admin users cannot see any modules anymore.

The well-known flash error message was shown:

Module loader
No module found. If this is a temporary error, please reload the Backend!

Call to http://domain.tld/typo3/ajax.php?ajaxID=ModuleMenu::getData returns {"success":true,"root":[]}


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #24981: After Login: "Module loader No module found. If this is a temporary error, please reload the Backend!"ClosedChristian Kuhn2011-02-08

Actions
Actions #1

Updated by Xavier Perseguers over 12 years ago

Cool: can reproduce locally on my test system.

Actions #2

Updated by Xavier Perseguers over 12 years ago

Method checkMod() of t3lib_loadmodules does this:

if (!$MCONF['shy'] && $this->checkModAccess($name, $MCONF) && $this->checkModWorkspace($name, $MCONF)) {

and checks fails (FALSE) within method checkModWorkspace:

function checkModWorkspace($name, $MCONF) {
    if ($this->observeWorkspaces) {
^^^^ this test is true ^^^^
        $status = TRUE;
        if ($MCONF['workspaces']) {
            // snipped
        } elseif ($this->BE_USER->workspace === -99) {
    ^^^^ this test is true as well ^^^^
            $status = FALSE;
        }
        return $status;
    } else {
        return TRUE;
    }
}

Additional information: sysext workspaces is not loaded

Actions #3

Updated by Xavier Perseguers over 12 years ago

If I load sysext workspaces, and I try to log in again with that non-admin user, it now fails with

No such workspace defined

InvalidArgumentException thrown in file
/path/to/typo3/sysext/workspaces/Classes/Service/Workspaces.php in line 105.
Actions #4

Updated by Xavier Perseguers over 12 years ago

  • Project changed from TYPO3 Core to 624
  • Category deleted (Backend User Interface)
  • Status changed from New to Accepted
Actions #5

Updated by Xavier Perseguers over 12 years ago

Changing class.modulemenu.php, method __construct(), line 66 with:

$this->moduleLoader->observeWorkspaces = t3lib_extMgm::isLoaded('workspaces');

instead of

$this->moduleLoader->observeWorkspaces = TRUE;

solves the problem when sysext workspaces is not loaded but when loaded, the "non existing workspaces" error still occurs.

Actions #6

Updated by Tolleiv Nietsch over 12 years ago

I tried to reproduce it without sucess. What I did:

1) Got the 4.5.6 Introduction package running (from the typo3.org downloads)
2) Logged in with "advanced_editor" - everything fine
3) Permitted access to the workspaces modules to the "advanced_editor" - everything fine
--- at this stage I've a nicly running system so the actual test starts now:

4) Changed to Core sourcefiles to 4.6 RC1
Repeated 2) and 3) -- everything fine

5) Ran through all upgrade wizards in the install toll
Repeated 2) and 3) -- everything fine

I missed something right?

Actions #7

Updated by Xavier Perseguers over 12 years ago

I guess that the problem comes if you upgrade an install where workspaces NEVER was loaded nor used. This is my case at least for this install.

I cannot say how long it dates back but I'm 90% sure it first was a 4.4 install which got updated to 4.5 when it came out and now upgraded to 4.6 RC1. workspaces was never used.

Actions #8

Updated by Tolleiv Nietsch over 12 years ago

Did the same thing starting with the 4.4.1 Introduction Package... same result, everything looks fine. Besides that I can't really see how installations differ if workspaces have or have not been installed before (other that the extList and couple of db tables.

Anyways keep me posted if there's a way to reproduce it with one of the intro-packages.

Actions #9

Updated by Xavier Perseguers over 12 years ago

Don't know if it helps but the real problem in the case I experience is the workspace "-99", not the "checkWorkspace" variable (I guess).

A friend of mine who actually runs the production website I had a problem with told me he experienced this before letting me know about it and first tried to set the workspace to "0" for his backend users. The hack worked for a while but "suddenly" the workspace was set back to -99 and the whole broke again. I'd say "suddenly" is after some change in the user settings.

Anyway, if you analyze the code, it's clear that all the checks regarding workspaces should never return anything else than TRUE if workspaces are not used...

Actions #10

Updated by Xavier Perseguers over 12 years ago

I just upgraded another website and do not have this problem, however this was a website that started with TYPO3 4.5. The 2 websites I had problems so far were older (4.4 for one of them, 4.3 or 4.4 for the other?) that were upgraded to 4.5 and now to 4.6.

Actions #11

Updated by Björn Pedersen over 12 years ago

From a grep:

./t3lib/class.t3lib_userauthgroup.php: var $workspace = -99; // User workspace. -99 is ERROR (none available), -1 is offline, 0 is online, >0 is custom workspaces.
./t3lib/class.t3lib_userauthgroup.php: * @return integer Default workspace id. If no workspace is available it will be "-99"
.

getDefaultWorkspace

This function does 3 things:
1) it checks wether Ws with id=0 exists and is allowed for user
2) it checks for WS with id=-1 and is allowed ( this is the old draft workspace, which was dropped, I think)
3) it checks wether the ws module is loaded and any other workspace is allowed.

if all checks fail, it returns -99.
So my guess is, that the problem can be reproduced if neiter WS 0 nor WS -1 are allowed for a user and the Workspace extension is not loaded.
Or for user who only had access to the old draft workspace and where not migrated to use the new workspace.

Actions #12

Updated by Björn Pedersen over 12 years ago

Actually, the upgrade wizard for workspace does create a new workspace for the old draft workspace, but does not change anything in be_users/be_groups to reflect this change.

Actions #13

Updated by Xavier Perseguers over 12 years ago

And if you don't upgrade because you never used workspaces and as such do not run this upgrade wizard, then this old setting causes the aforementioned problem.

Actions #14

Updated by Mr. Hudson over 12 years ago

Patch set 1 of change I2f16a630a8f02bf1aa9a5bd61a340b53b6fd1365 has been pushed to the review server.
It is available at http://review.typo3.org/6063

Actions #15

Updated by Mr. Hudson over 12 years ago

Patch set 1 of change Ief4f030134359e9d2b27b82ae4c5de6a7b5b800e has been pushed to the review server.
It is available at http://review.typo3.org/6073

Actions #16

Updated by Mr. Hudson over 12 years ago

Patch set 2 of change I2f16a630a8f02bf1aa9a5bd61a340b53b6fd1365 has been pushed to the review server.
It is available at http://review.typo3.org/6063

Actions #17

Updated by Mr. Hudson over 12 years ago

Patch set 2 of change Ief4f030134359e9d2b27b82ae4c5de6a7b5b800e has been pushed to the review server.
It is available at http://review.typo3.org/6073

Actions #18

Updated by Xavier Perseguers over 12 years ago

  • Status changed from Accepted to Resolved
  • Assignee set to Tolleiv Nietsch
  • % Done changed from 0 to 100
Actions #19

Updated by Michael Stucki over 10 years ago

  • Category set to Workspaces
Actions #20

Updated by Michael Stucki over 10 years ago

  • Project changed from 624 to TYPO3 Core
  • Category changed from Workspaces to Workspaces
Actions #21

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF