我是typo3扩展开发的新手,我也使用extension_builder创建了扩展以及后端模块。
ext_tables.php
if (TYPO3_MODE === 'BE') {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'USER.Webuser',
'web', // Make module a submodule of 'web'
'bewebuser', // Submodule key
'', // Position
[
'Users' => 'list, show, new, create, edit, update, delete',
],
[
'access' => 'user,group',
'icon' => 'EXT:' . $extKey . '/Resources/Public/Icons/user_mod_bewebuser.svg',
'labels' => 'LLL:EXT:' . $extKey . '/Resources/Private/Language/locallang_bewebuser.xlf',
]
);
}
Run Code Online (Sandbox Code Playgroud)
打字稿:
# Setting up template
module.tx_webuser_web_webuserbewebuser {
persistence {
storagePid = {$module.tx_webuser_bewebuser.persistence.storagePid}
}
view {
templateRootPaths = EXT:webuser/Resources/Private/Backend/Templates/
partialRootPaths = EXT:webuser/Resources/Private/Backend/Partials/
layoutRootPaths = EXT:webuser/Resources/Private/Backend/Layouts/ …Run Code Online (Sandbox Code Playgroud) 我曾尝试将 TYPO3 版本 9.0.0 升级到 LTS 版本。我已按照以下步骤操作。
TYPO3 版本 9.0.0 到 TYPO3 LTS
1)启用符号链接typo3_src文件夹
ln -s typo3 typo3_src
Run Code Online (Sandbox Code Playgroud)
此显示升级按钮已启用以执行升级。
2) 之后,我执行了升级过程。
当我单击按钮时没有任何反应,这只显示这样的消息。
TYPO3 版本 9.5.6 到 TYPO3 LTS
我已经执行了相同的步骤来检查 TYPO3 版本 9.5.6 中的功能
这个在根目录下载最新版的typo3
在根目录中并显示成功消息
根据消息中的显示,它告诉我重新加载浏览器,因为系统已升级。但是,重新加载后没有显示最新版本的TYPO3。
谁能告诉我这有什么问题?