简体   繁体   English

Typo3登录屏幕后无法访问后端

[英]Backend cannot be reached after Typo3 login screen

I am trying to install Typo3 on my Windows 10 computer and everthing goes well. 我正在尝试在Windows 10计算机上安装Typo3,一切顺利。 Right after the installation (right before the Typo3 backend is supposed to open up for the first time) I get to the Login Page, type in the correct username and password and then tries to connect me to the Typo3 backend. 在安装后(在应该第一次打开Typo3后端之前),我进入登录页面,输入正确的用户名和密码,然后尝试将我连接到Typo3后端。 However, all that I see is "localhost\\index.php..." could not be reached. 但是,我只能看到“ localhost \\ index.php ...”。

I have tried the installation process on two seperate computers and I get the same problem with both. 我已经在两台单独的计算机上尝试了安装过程,但两台计算机都出现了相同的问题。

Help is much appreciated! 非常感谢帮助!

I have finally figured it out! 我终于想通了!

  1. Go to the file 转到文件

    httpd.conf should be here --> C:\\xampp\\apache\\conf httpd.conf应该在这里-> C:\\ xampp \\ apache \\ conf

  2. Add these lines 添加这些行

 <IfModule mpm_winnt_module> ThreadStackSize 8388608 </IfModule> 

I can finally log into the backend. 我终于可以登录到后端了。 Thanks for your help! 谢谢你的帮助!

In the windows, probably you will get internal server error while you try to get the login to the backend. 在Windows中,尝试将登录名获取到后端时,可能会收到内部服务器错误。

Reason: 原因:

Open SSL is not enabled in the local environment. 在本地环境中未启用Open SSL。

Solution 1: 解决方案1:

If you're using XAMPP server, I have created the proper configuration here: https://gist.github.com/GhanshyamBhava/41d3a34acc11cec2a4828b0d4b2c840f 如果您使用的是XAMPP服务器,则在这里创建了正确的配置: https : //gist.github.com/GhanshyamBhava/41d3a34acc11cec2a4828b0d4b2c840f

Solution 2: 解决方案2:

You can go ahead and set the login security level to normal instead of RSA in the typo3conf/LocalConfiguration.php : 您可以继续在typo3conf/LocalConfiguration.php中将登录安全级别设置为正常,而不是RSA:

'BE' => [
    'loginSecurityLevel' => 'rsa', // change it to normal
],

I would suggest create proper SSL configuration at live for better securiry 我建议现场创建适当的SSL配置,以提高安全性

Other solution links 其他解决方案链接

Hope this will help you! 希望这个能对您有所帮助!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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