简体   繁体   中英

Typo3 6.2.5 Quixplorer alternatives?

I just did a fresh Typo3 6.2.5 Install and wanted to use some kind of file editor which is able to edit .htaccess in Typo3 root. The standard BE file list doesn't list any file above fileadmin.

In the past T3Quixplorer was the way to go for me, but it doesn't seem to be developed any further. I found the kmcs_fileedit extension but that doesn't allow me to edit .htaccess.

Any suggestions?

只需在Extension Manager中添加到kmcs_fileedit配置(字段Editable file extensions ):

|\\.htaccess$

  1. There is an early extbase-version available on Github:

    Quixplorer: Extbase-Version .

    This version is working on Typo3 6.2, but it might not include every feature.


  1. You can also try to get the original version running on Typo3 6.2 by modifying the t3quixplorer/mod1/index.php file of the extension.

    Comment out lines 55 and 57 of the file:

    ... /*require ($BACK_PATH.'template.php');*/ $LANG->includeLLFile('EXT:t3quixplorer/mod1/locallang.xml'); /*require_once (PATH_t3lib.'class.t3lib_scbase.php');*/ ...

    Then the extension should be working again on typo3 6.2

One possible solution without any additional extension usage is to create a new File Storage record with a Base path set to / or typo3conf/ext/ .

However the drawback is that you must add the file extensions also to [SYS][textfile_ext] in the Install Tool.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM