I've moved my Magento to another server with another domain name, now it keeps linking me back to the old domain. All files and the entire database has been searched&replaced to ensure references are gone. Cache got removed. I suspect it still tries to use the old database so i modified the local.xml file containing the DB info but that doesn't change anything. Since there is no cache does anyone have any idea what goas wrong?

link|improve this question

71% accept rate
Are you using memcached? – clockworkgeek Jul 29 '11 at 11:21
Did you replace your cookie_domain in core_config_data as well? – Jürgen Thelen Jul 29 '11 at 17:22
feedback

3 Answers

This is probably due to the old base url stored in the database table core_config_data. You have to update that values to point to the new domain.

You can update with the following update queries

UPDATE core_config_data SET value="http://www.newdomain.com/" 
WHERE path="web/unsecure/base_url"

to update secure base url

 UPDATE core_config_data SET value="https://www.newdomain.com/" 
 WHERE path="web/secure/base_url"
link|improve this answer
Thanks but that's already done. I suspect however that it is still using the old database even though the local.xml was modified and the cache was removed. – user746379 Jul 29 '11 at 9:46
@user: Did you delete cache folder? – Shakti Singh Jul 29 '11 at 9:51
I did, I have found the problem already though. Apparently Magento used the 'temp' directory in the server-root aswell :| – user746379 Aug 2 '11 at 7:41
The same issue, modification of core_config_data is not enough. – Fedir Oct 23 '11 at 5:12
feedback
up vote 0 down vote accepted

Apparently Magento used the 'temp' directory in the server-root for caching aswell. cleaning this would solve the issue. This is ofcourse also taken care of when rebooting the server.

link|improve this answer
feedback

In my case it was even more strange, on my development instance I had no "temp" folder, the cache was stored somewhere outside of site vhost, or in dB, but not in core_config_data. Only flush cache in Magento BE could help, so better to do it before dB dump.

Best regards.

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.