Cannot connect to Typo3 V6.2.1 backend on windows 7

你说的曾经没有我的故事 提交于 2019-12-24 01:55:05

问题


I have installed Typo3 on my computer (running on W7 with wamp) and I have some problem to connect to the backend.

The installation process is working fine but when I try to connect, after typing my username and password the system displays "Verifying login data..." forever. I am sure that I have typed the correct information.

I used PHP 5.3.28 (UI have tried with PHP 5.4.31 with the same result), apache 2.2.17 and MySQL 5.5.8.

Could you please help me?

Thanks,

Manu


回答1:


For me the problem was that OpenSSL was not installed.

First I ignored the problem Typo3 complained about because on a local System I was not worried about security. But the installation fixed the login issue.




回答2:


Try to check the http-calls in the browser (F12 -> Network-Tab), maybe there is a response with a helpful message! Also check your server-logs and post more specific errors.

Check if you have all php-dependencies/modules installed and set

memory_limit = 128M

in the php.ini for your TYPO3-instance.

Requirements for TYPO3.CMS 6.2




回答3:


change

TYPO3_CONF_VARS[‘FE’][‘loginSecurityLevel’] = ‘rsa’;

to

TYPO3_CONF_VARS[‘FE’][‘loginSecurityLevel’] = ‘normal’;



回答4:


If you open the browser's inspection tools, you will see that it's a ajax request that gets back with a http 500 error code. If you try this http request in the browser, you will probably get the error :

<t3err>No OpenSSL backend could be obtained for rsaauth.</t3err>

Which gives us some insight.

As stated in Exception/CMS/1318283565, found when googling the t2err error, it's a OpenSSL Issue. Two solutions :

  • Get your openssl configuration right (see previous link)
  • Fallback to a non-rsa authentication method - not recommended :

    • edit the LocalConfiguration.php, set loginSecurityLevel to normal
    • update the user hashed password in database (change 'admin' by your login) :

      UPDATE be_users SET password=md5('your_new_password') WHERE username = 'admin';
      


来源:https://stackoverflow.com/questions/24938313/cannot-connect-to-typo3-v6-2-1-backend-on-windows-7

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!