Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/typo3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 无法在';参考索引:更新';_Php_Typo3_Typo3 9.x_Typo3 10.x - Fatal编程技术网

Php 无法在';参考索引:更新';

Php 无法在';参考索引:更新';,php,typo3,typo3-9.x,typo3-10.x,Php,Typo3,Typo3 9.x,Typo3 10.x,我想将我的TYPO3安装从9.5.1更新到10.4.9 表示在shell上执行php./typo3/sysext/core/bin/typo3 referenceindex:update。我这样做了,得到了一个例外: Error in GnuTLS initialization: Failed to acquire random data. Uncaught TYPO3 Exception An exception occurred in driver: php_network_getaddr

我想将我的TYPO3安装从9.5.1更新到10.4.9

表示在shell上执行
php./typo3/sysext/core/bin/typo3 referenceindex:update
。我这样做了,得到了一个例外:

Error in GnuTLS initialization: Failed to acquire random data.

Uncaught TYPO3 Exception An exception occurred in driver: php_network_getaddresses: getaddrinfo failed: Name or service not known
thrown in file /is/htdocs/XXX/typo3/typo3-9.5.1/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php
in line 112
当我尝试重新登录到后端时,现在在浏览器控制台中出现以下错误:

require-d5051a72d474f75e61b6d2ad78818898.js:1 GET http://XXX/typo3/TYPO3/CMS/Backend/Login.js net::ERR_ABORTED 404 (Not Found)
Uncaught Error: Script error for "TYPO3/CMS/Backend/Login"
http://requirejs.org/docs/errors.html#scripterror
    at makeError (require-d5051a72d474f75e61b6d2ad78818898.js:1)
    at HTMLScriptElement.onScriptError (require-d5051a72d474f75e61b6d2ad78818898.js:1)
require-d5051a72d474f75e61b6d2ad78818898.js:1 GET http://XXX/typo3/TYPO3/CMS/Backend/UserPassLogin.js net::ERR_ABORTED 404 (Not Found)
Uncaught Error: Script error for "TYPO3/CMS/Backend/UserPassLogin"
http://requirejs.org/docs/errors.html#scripterror
    at makeError (require-d5051a72d474f75e61b6d2ad78818898.js:1)
    at HTMLScriptElement.onScriptError (require-d5051a72d474f75e61b6d2ad78818898.js:1)
GET http://XXX/typo3/TYPO3/CMS/Rsaauth/RsaEncryptionModule.js net::ERR_ABORTED 404 (Not Found)
Uncaught Error: Script error for "TYPO3/CMS/Rsaauth/RsaEncryptionModule"
http://requirejs.org/docs/errors.html#scripterror
    at makeError (require-d5051a72d474f75e61b6d2ad78818898.js:1)
    at HTMLScriptElement.onScriptError (require-d5051a72d474f75e61b6d2ad78818898.js:1)
安装托管在主机欧洲Web空间上

配置为:

  • 操作系统:Unix
  • PHP版本:7.2.34-he.0
  • 检测到PHP CGI:否
  • 数据库版本:MySQL 5.7.30

能否访问yourdomain.tld/TYPO3/Install.php上的TYPO3安装工具?在那里,您可以检查您的环境中是否存在错误,数据库连接是否正常,您可以刷新所有缓存。另一件事您应该尝试,因为错误消息是关于rsauth的:尝试设置
$GLOBALS['TYPO3_CONF_VARS']['BE']['loginSecurityLevel']='normal'在LocalConfiguration.php中。TYPO3核心模块RSAUTH已在TYPO3 v10中删除,因为所有人都希望使用SSL。@PeterKraume我可以访问安装工具。刷新缓存并单击其他一些似乎有用的按钮后,我可以再次登录到后端。非常感谢。