Prestashop redirects to old domain after changing it in Database(Prestashop 在数据库中更改后重定向到旧域)
问题描述
我正在尝试为从 domain.com 到 dev.domain.com 的开发目的创建一份 prestashop 1.6 电子商店的副本
I am trying to create a copy of a prestashop 1.6 e-shop for development purposes from domain.com to dev.domain.com
我遵循的过程是
- 禁用缓存和编译
- 将文件从 domain.com 复制到 dev.domain.com
- 将 mysql 数据库从 domain.com 转储到 dump.sql
- 在 vi 上打开 dump.sql 并使用 :%s/domain.com/dev.domain.com/g 进行搜索和替换
- 在devdb中导入dump.sql
- 打开 prestashop cpanel 并验证所有商店 url 配置都已更改.
- 打开 phpmyadmin 并检查所有 domain.com 条目是否已更改为 dev.domain.com
- 从/cache/smarty/compile/cache/cachefs 中删除的文件
- 从 prestashop 重建 .htaccess 文件.
- 更改了 devdb 中的登录凭据,以便网站加载该凭据
现在的问题是,当我打开 dev.domain.com 时,我仍然被重定向到 domain.com,我不知道接下来要尝试什么.
Now the problem is that when I open dev.domain.com i still get redirected to domain.com and I'm at a loss as to what to try next.
在 devdb 中的 phpmyadmin 中搜索 domain.com 没有结果grep -ri 'domain.com' * 也不会在文件中产生结果
Searching for domain.com in phpmyadmin in the devdb doesn't yield results grep -ri 'domain.com' * doesn't yield results either in the files
有什么建议我接下来可以尝试吗?
Any suggestions what I can try next?
PS:domain.com 和 dev.domain.com 是两个不同的域.反正不一样
PS: domain.com and dev.domain.com are two different domains. Not similar in anyway
推荐答案
首先,您能以正确的方式执行每一步是很棒的.现在的问题是:-
First of all it's great that you follow each step in correct manner. Now the problem is:-
当您在浏览器上运行任何域时.浏览器为此创建缓存和 cookie.如果您更改您的域的任何设置,它不会反映,直到您没有完全清除浏览器缓存和 cookie.
When ever you are running any domain on your browser. Browser create cache and cookie for this. If you change any setting of your domain, it will not reflect till you not clear your browser cache and cookie completely.
所以只需删除您的浏览器缓存和 cookie 并尝试检查它是否有效.
So just remove your browser cache and cookie and try to check is it working or not.
注意:- 根据您遵循的流程,似乎存在唯一的问题.
Note:- Based on your process that you follow, this only problem seems to exist.
这篇关于Prestashop 在数据库中更改后重定向到旧域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Prestashop 在数据库中更改后重定向到旧域
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01