I recently moved my Drupal 7 site to a new hosting server and I'm stuck at the login page. As soon as I try and log in, I get directed back to the same page, but the URL changes from /user to /user/1, which leads me to believe that I am actually logged in, but I'm not being forwarded to the correct page.

I tried cleaning my cache, emptying the cache tables in the DB but nothing helped.

Any ideas?

EDIT: To make things a bit more clear, I've used the specific server for various other Drupal 7 sites, so I know for a fact that the server configuration is not at fault here.

link|improve this question

80% accept rate
An explanation why the question was voted down would be appreciated. – leo.vingi Nov 14 '11 at 17:12
try asking on serverfault. stackoverflow is for programming questions. see here - stackoverflow.com/about – antony_scott Nov 14 '11 at 17:14
@AntonyScott So just because my question has the word "server" in it, you assume that it belongs somewhere else? This has nothing to do with the server configuration. – leo.vingi Nov 14 '11 at 17:18
hey, i didn't downvote you. someone else did. but, i have to say, I can't see the programming related problem in your question. but I'm not a drupal expert :) – antony_scott Nov 14 '11 at 17:22
1  
You can improve the question by including some source code you suspect is causing the problem. However, this could be a candidate for moving to serverfault or webmaster. You say this has nothing to do with the server configuration, but you also say that this started only when you switched servers, so identifying the differences between the two servers seems like a reasonable place to start. – Kurt McKee Nov 14 '11 at 17:24
show 1 more comment
feedback

2 Answers

up vote 4 down vote accepted

I suspect your $cookie_domain in /sites/default/settings.php is incorrect.

Try making it match your new domain and ensure there's a leading dot .

$cookie_domain = '.mydomain.co.uk';
link|improve this answer
Perfect! It worked! – leo.vingi Nov 14 '11 at 17:29
feedback

I run into this on my d6.xx installs.

I've found that I login successfully on the 2nd try, same url.

So, try twice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.