typo3 安装扩展后页面崩溃
typo3 crashed page after installed extension
我在 typo3 版本 4.5 中安装扩展程序后,我无法登录后端,我的页面是空白的,在我尝试继续 http://mydomain/typo3/install/index.php 后,我收到此消息:
The Install Tool is locked.
Fix: Create a file typo3conf/ENABLE_INSTALL_TOOL
This file may simply be empty.
For security reasons, it is highly recommended to rename
or delete the file after the operation is finished.
If the file is older than 1 hour TYPO3 has automatically
deleted it, so it needs to be created again.
在如此旧的 TYPO3 中安装任何扩展可能会终止您的安装,因为任何现代扩展都与旧源不兼容。
现代扩展有命名空间、自动加载器、使用 API 类 和旧安装未知的功能,甚至可能使用旧 PHP 未知的 PHP7 功能需要 运行 那些旧的 TYPO3。
现在进行清理:
如消息所示进入安装工具:
create/update那个文件然后就可以进入安装工具了
但在 4.5 中,您将无法再获得系统 运行ning 的帮助。
您必须禁用恶意扩展程序:
在文件 typo3conf/localconf.php
中,您需要从已安装(活动)扩展列表中删除扩展密钥。为此,您可以使用任何编辑器。一种是在 InstallTool 中构建。
之后您需要删除 localconf.php
的缓存版本:删除 typo3conf/
.
文件夹中的 temp*
个文件
现在您的系统应该可以再次工作了(但仍然可能不干净)。
您应该删除扩展名 (typo3conf/ext/extensionkey
).
也许数据库中有新的表和字段。因此在 InstallTool 中进行数据库比较。
我在 typo3 版本 4.5 中安装扩展程序后,我无法登录后端,我的页面是空白的,在我尝试继续 http://mydomain/typo3/install/index.php 后,我收到此消息:
The Install Tool is locked.
Fix: Create a file typo3conf/ENABLE_INSTALL_TOOL
This file may simply be empty.
For security reasons, it is highly recommended to rename
or delete the file after the operation is finished.
If the file is older than 1 hour TYPO3 has automatically
deleted it, so it needs to be created again.
在如此旧的 TYPO3 中安装任何扩展可能会终止您的安装,因为任何现代扩展都与旧源不兼容。
现代扩展有命名空间、自动加载器、使用 API 类 和旧安装未知的功能,甚至可能使用旧 PHP 未知的 PHP7 功能需要 运行 那些旧的 TYPO3。
现在进行清理:
如消息所示进入安装工具:
create/update那个文件然后就可以进入安装工具了
但在 4.5 中,您将无法再获得系统 运行ning 的帮助。
您必须禁用恶意扩展程序:
在文件 typo3conf/localconf.php
中,您需要从已安装(活动)扩展列表中删除扩展密钥。为此,您可以使用任何编辑器。一种是在 InstallTool 中构建。
之后您需要删除 localconf.php
的缓存版本:删除 typo3conf/
.
temp*
个文件
现在您的系统应该可以再次工作了(但仍然可能不干净)。
您应该删除扩展名 (typo3conf/ext/extensionkey
).
也许数据库中有新的表和字段。因此在 InstallTool 中进行数据库比较。