Project

General

Profile

Actions

Bug #45859

closed

Element Browser stops working

Added by Christian Herberger about 11 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Must have
Assignee:
Category:
File Abstraction Layer (FAL)
Target version:
-
Start date:
2013-02-26
Due date:
% Done:

100%

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

Description

We found a bug in the element browser in TYPO3 (maybe only in the image selector, but this is one of the most central parts for editors)

When you try to add a picture to a textpic-element, you get the element browser dialog. There you can navigate through your folders. From the moment on you use an arrow to open a folder with subfolders, you cannot select a folder anymore. Javascript error console says "jumpTo is not defined". We tested it on a client's page which was upgraded from 4.5 to 6.0 and on a fresh 6.0 installation without any extensions changing file or element browser behaviour.


Related issues 4 (0 open4 closed)

Related to TYPO3 Core - Bug #47648: PHP Warning: rtrim() expects parameter 1 to be string in ElementBrowser.php line 1867Closed2013-04-27

Actions
Related to TYPO3 Core - Bug #50437: Filebrowser popup window has javascript error and stops workingClosed2013-07-25

Actions
Related to TYPO3 Core - Bug #46610: ElementBrowser must not use dirname() on identifierClosed2013-03-23

Actions
Has duplicate TYPO3 Core - Bug #50889: Faulty expand/collapse behavior in Element BrowserClosed2013-08-07

Actions
Actions #1

Updated by Tilo Baller about 11 years ago

Same here with TYPO3 6.0.0 - 6.0.4. Tested in Firefox 19 and Chrome 24/25.

Actions #2

Updated by Tilo Baller about 11 years ago

I also recognized the following two errors in belog which occur when opening the Element Browser popup.

16:19:04 tbal@LIVE     [5]     [0]     Core: Error handler (BE): PHP Warning: ArrayIterator::seek() expects parameter 1 to be long, string given in [...]typo3_src/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php line 312     
16:19:04 tbal@LIVE     [5]     [0]     Core: Error handler (BE): PHP Warning: rtrim() expects parameter 1 to be string, object given in [...]typo3_src/typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php line 1867 

Actions #3

Updated by Helmut Hummel about 11 years ago

  • Category changed from Backend User Interface to File Abstraction Layer (FAL)
  • Status changed from New to Accepted

This indeed a bug which was introduced with the ajax loading of the subfolders in the file picker

Actions #4

Updated by Benni Mack about 11 years ago

  • Assignee set to Benni Mack

working on that.

Actions #5

Updated by Benni Mack about 11 years ago

OK. This does not have anything to do with FAL, but with the fact that there are multiple Tree implementations in the Core. The AJAX call uses an old function to return the tree parts, but the original tree set up when loading a page uses another.

Actions #6

Updated by Fry about 11 years ago

Is there any workaround for now?

Actions #7

Updated by Oliver Rowlands about 11 years ago

Mack: any update on this issue yet?

Actions #8

Updated by Simon Huebner almost 11 years ago

No News yet? I have the same issue while inserting some (dunno what the failing attributes are) images to rte.

Actions #9

Updated by Sven Juergens almost 11 years ago

same bug in 6.1.1

Actions #10

Updated by Thomas Blaß almost 11 years ago

Is there an update on this issue? My editors are very annoyed because this issue is a mayor usability issue for them and is not fixed after 3 month.

Actions #11

Updated by Chris topher almost 11 years ago

This is at least for one part the same problem as #47648.

The problem comes from ElementBrowser.php line 1138:

TYPO3\CMS\Recordlist\Browser\ElementBrowser::main_file() calculates the value of $this->selectedFolder and in one case, $this->selectedFolder is not set to a string, but to an object:

$fileOrFolderObject = \TYPO3\CMS\Core\Resource\ResourceFactory::getInstance()->retrieveFileOrFolderObject($this->expandFolder); if ($fileOrFolderObject instanceof \TYPO3\CMS\Core\Resource\Folder) { // It's a folder $this->selectedFolder = $fileOrFolderObject; ... if ($this->selectedFolder && !$this->isReadOnlyFolder($this->selectedFolder)) {

This causes the problem.

It would be correct, if $this->selectedFolder would be set to the absolute path of the folder.

Actions #12

Updated by Andreas Renner almost 11 years ago

I'm currently confrontated with this problem too, as I'm trying to update a customers site from 4.6 to 6.0.6. Everything seemed to work fine, but this problem stops the whole process. For testing reasons I've set up a blank new Typo3 installation next to the updated site. The problem does not exist on the new site, only on the updated one! The next thing I tried was to deactivate all the installed extensions on the customer-page, so that on both sites there are the same extensions installed, but no luck, the problem still exists. Unfortunately time is already short...is anyone out there, working on this issue?

I've investigated further, but first I have to say, I'm not familiar with the typo3-core:

I debugged this with the help of Christopher's post, made a workaround for this, just to see if this is the only problem with the ElementBrowser and: no it isn't. The next exception thrown is the following:

PHP Warning: ArrayIterator::seek() expects parameter 1 to be long, string given in <blablabla>typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php line 316 (More information)

and it originates from

typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php, Line 1523 where getFiles is called with the only Parameter $extensionList. But getFiles (in typo3/sysext/core/Classes/Resource/Folder.php, Line 184) is defined as follows:

getFiles($start = 0, $numberOfItems = 0, $filterMode = self::FILTER_MODE_USE_OWN_AND_STORAGE_FILTERS, $recursive = FALSE)

So the a string with file-extensions is passed as $start which leads to the error in LocalDriver.php, line 316.

Hope that helps someone more familiar with the typo3 core!

Actions #13

Updated by Neil Jones over 10 years ago

Any news on when this is going to be fixed????

Actions #14

Updated by Gerrit Code Review over 10 years ago

  • Status changed from Accepted to Under Review

Patch set 2 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/22934

Actions #15

Updated by Gerrit Code Review over 10 years ago

Patch set 1 for branch TYPO3_6-1 has been pushed to the review server.
It is available at https://review.typo3.org/23877

Actions #16

Updated by Gerrit Code Review over 10 years ago

Patch set 2 for branch TYPO3_6-1 has been pushed to the review server.
It is available at https://review.typo3.org/23877

Actions #17

Updated by Gerrit Code Review over 10 years ago

Patch set 3 for branch TYPO3_6-1 has been pushed to the review server.
It is available at https://review.typo3.org/23877

Actions #18

Updated by Gerrit Code Review over 10 years ago

Patch set 4 for branch TYPO3_6-1 has been pushed to the review server.
It is available at https://review.typo3.org/23877

Actions #19

Updated by Gerrit Code Review over 10 years ago

Patch set 1 for branch TYPO3_6-0 has been pushed to the review server.
It is available at https://review.typo3.org/23878

Actions #20

Updated by Oliver Hader over 10 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #21

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF