缺少TYPO3管理后端模块




我花了一整天的时间来运行Xampp并在其上安装TYPO3。现在我登录了后端,但许多管理模块都没有显示,比如Templates、Access等。-肯定是我做错了什么,但我不知道

这些是显示的模块
缺少:视图、信息、功能、模板、访问、后端用户、日志、数据库检查、配置、报告

大多数后端模块都是作为扩展提供的,可以安装、卸载、激活和停用。

如果使用传统安装方法(提取TYPO3源程序包)安装TYPO3,请转到ADMIN TOOLS→扩展,并确保丢失的模块已激活。例如,"Log"由系统扩展belog提供,"Templates"由tstemplate提供。您可以通过单击扩展标题左侧的图标来激活/停用扩展。

如果您使用PHP Composer安装了TYPO3(请参阅文档),请确保所有包都包含在composer.json文件中。例如typo3/cms-belogtypo3/cms-tstemplate等。您可以在命令行上使用以下composer命令添加/删除包(例如typo3/cms-belog):

composer require typo3/cms-belog
composer remove typo3/cms-belog

如果这不太可能解决您的问题,请查看文件typo3conf/PackageStates.php。此文件包含TYPO3系统中当前可用的所有扩展名(系统扩展名以及社区扩展名)的列表。

也可能是您的admin用户可能是从旧版本迁移过来的,而不是新引入的系统维护人员

https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/9.0/Feature-82266-BackendUsersSystemMaintainers.html

如果是这样的话,您可以很容易地从安装环境中创建一个新的"系统维护者用户">维护>创建管理用户

我也遇到了同样的问题。PackageStates.php中也提供了所需的扩展,但后端菜单选项(如Admins Tools、Extensions和Maintenance)仍然不可见。

原因是该管理员用户没有被列为系统维护

要使后端用户成为系统维护人员,请执行以下

  1. 使用/typep3/install.php的管理员密码登录
  2. 设置>管理系统维护人员
  3. 选择并保存您想要的后端用户作为系统维护人员

现在转到/typep3/的后端,您应该会看到";Admins Tools"菜单选项

您可以使用https://get.typo3.org/misc/composer/helper找出丢失的扩展名。如果您只是想安装所有扩展,请点击TYPO3/FULL并将代码复制粘贴到控制台。

composer require "typo3/cms-about:^9.5" "typo3/cms-adminpanel:^9.5" "typo3/cms-backend:^9.5" "typo3/cms-belog:^9.5" "typo3/cms-beuser:^9.5" "typo3/cms-core:^9.5" "typo3/cms-extbase:^9.5" "typo3/cms-extensionmanager:^9.5" "typo3/cms-feedit:^9.5" "typo3/cms-felogin:^9.5" "typo3/cms-filelist:^9.5" "typo3/cms-filemetadata:^9.5" "typo3/cms-fluid:^9.5" "typo3/cms-fluid-styled-content:^9.5" "typo3/cms-form:^9.5" "typo3/cms-frontend:^9.5" "typo3/cms-impexp:^9.5" "typo3/cms-indexed-search:^9.5" "typo3/cms-info:^9.5" "typo3/cms-install:^9.5" "typo3/cms-linkvalidator:^9.5" "typo3/cms-lowlevel:^9.5" "typo3/cms-opendocs:^9.5" "typo3/cms-recordlist:^9.5" "typo3/cms-recycler:^9.5" "typo3/cms-redirects:^9.5" "typo3/cms-reports:^9.5" "typo3/cms-rsaauth:^9.5" "typo3/cms-rte-ckeditor:^9.5" "typo3/cms-scheduler:^9.5" "typo3/cms-seo:^9.5" "typo3/cms-setup:^9.5" "typo3/cms-sys-action:^9.5" "typo3/cms-sys-note:^9.5" "typo3/cms-t3editor:^9.5" "typo3/cms-taskcenter:^9.5" "typo3/cms-tstemplate:^9.5" "typo3/cms-viewpage:^9.5" "typo3/cms-workspaces:^9.5"

最新更新