Question

I use TYPO3 6.2 on Ubuntu behind a Proxy.

When I want to login in the backend, all the times I have this error :

Your login attempt did not succeed

Make sure to spell your username and password correctly, including upper/lowercase characters.

But I'm sur, the username and the password are good cause I try to create an other usr in the install fill and I have the same error with the new user.

I tried to change this conf but that doesn't work too.

[HTTP][adapter] = curl 
[HTTP][proxy_host] = http://proxy
[HTTP][proxy_port] = port
[SYS][curlUse] = 1
[SYS][curlProxyServer] = http://proxy:port

Edit : I don't use SSL

Edit2 : I need perhaps add something in my conf with Apache (It's compulsory to use proxy)

NameVirtualHost 127.0.0.1:80
<VirtualHost exemple.com:80>
        DocumentRoot /var/www/
        ServerName exemple.com
        ServerAlias www.exemple.com
        <Directory /var/www>
                Order Allow,Deny
                Deny from all
        </Directory>
        ProxyPass /exemple/ http://exemple1.local/

        ProxyPassReverse /exemple/ http://exemple1.local/
</VirtualHost>

<VirtualHost 127.0.0.1:80>
        DocumentRoot /exemple/
        ServerName exemple1.local/
        <Directory /exemple/>
                Order Allow,Deny
                Allow from all
        </Directory>
</VirtualHost>
Was it helpful?

Solution 2

So now, I can say that not possible like I what to do (I think.) So now I use two ServerNames...

OTHER TIPS

This error message can mean anything. You will see this error message for any error that occurs during login process to not disclose information.

A few things to try:

  • can you login without the proxy?
  • can you server store sessions at all?
  • does your Proxy modify GET or POST parameters?
  • ...

You can try to install a devlog extension and have a look at the extended login action protocol. You will need to enable DLOG in the install tool.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top