2014-01-11 51 views

回答

0

有兩件事需要解決,還有兩件事需要跟進。

數據庫:(這是最有可能的問題)的內部 更新域:core_config_data 參考:http://www.magentocommerce.com/wiki/1_-_installation_and_configuration/update_site_url_in_core_config_data

DB配置文件:應用程序的/ etc/local.xml中 這必須與您的本地數據庫設置進行更新在內部訪問正確的數據庫。

您還需要清除Magento緩存。 store/var/cache/*

瀏覽器: 清除本地緩存,以保證安全。

乾杯!

0

Magento保存網站的基地址在[prefix_]core_config_data table。您需要更改值路徑:

web/unsecure/base_url

web/secure/base_url

在此表中。

另請檢查本地服務器上的數據庫登錄憑據是否有任何更改。如果是,那麼你需要在相應的改變:

[website's root directory]/app/etc/local.xml

現在刪除緩存會議[website's root directory]/var文件夾下的文件夾

0

只要運行在你的MySQL服務器下面的SQL查詢:

update core_config_data 
set value = 'http://[your-new-host]/' 
where path = 'web/unsecure/base_url'; 

update core_config_data 
set value = 'http://[your-new-host]/' 
where path = 'web/secure/base_url'; 

請修改[您的新主機]到你的主機名,也不要忘了「/」結尾。

相關問題