博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
手动修改magento域名
阅读量:6603 次
发布时间:2019-06-24

本文共 1078 字,大约阅读时间需要 3 分钟。

So it turns out the problem was that Apache didn't have write permissions to the WEBROOT/var directory, so Magento was using its cache from the system /tmp directory. (thanks for the tip, Fiasco Labs!)

In case someone gets here from Google, I'll reiterate the steps...

How to Manually Change Domain in Magento

  1. Update your core_config_data table to edit the two records for web/unsecure/base_url and web/secure/base_url

  2. Delete the contents of WEBROOT/var/cache

  3. Update / edit any .htaccess domain redirects you may have added

  4. Restart Apache

  5. Make sure Apache has write permissions to WEBROOT/var

  6. If you created a new DB, ensure that the WEBROOT/app/etc/local.xml is pointing to it.

  7. If you're using Chrome, clear your browser cache! (Chrome caches 301s)

     

   结合上述办法,数据库里这样做:

UPDATE `magento_dev`.`core_config_data` SET `value` = 'http://dd.local/' WHERE `core_config_data`.`path` = 'web/secure/base_url';UPDATE `magento_dev`.`core_config_data` SET `value` = 'http://dd.local/' WHERE `core_config_data`.`path` = 'web/unsecure/base_url';

 

 

转载于:https://www.cnblogs.com/xingmeng/p/4755707.html

你可能感兴趣的文章
git 常用命令 -- 菜鸟的笔记
查看>>
sturts漏洞
查看>>
java静态方法中读取类路径
查看>>
UNIX网络编程(第三版 ) 测试代码 7.2
查看>>
【原创】数组完整篇 / 基本操作/ 进阶 / 遍历 / 实例 / 拓展 / 取 / 赋
查看>>
Eclipse 实用快捷键大全
查看>>
我原来是一个伪无神论者
查看>>
linux 挂载samba盘
查看>>
cookie 双引号
查看>>
LayaAir 旋转的小球 抛物线效果 [未完善]
查看>>
cdn的具体应用案例
查看>>
android的selector(背景选择器)
查看>>
more adj/adv than as well as prefer to
查看>>
pitfall fields
查看>>
Hadoop实战读书笔记(3)
查看>>
策略模式
查看>>
2012-2013 微软商业智能大调研分析报告
查看>>
iOS7设计规范分享:UI设计基础
查看>>
徐元杰:“淘”里“淘”外,简单营销
查看>>
国内外SNS比较分析
查看>>