0

我在我的开发服务器中创建了一个 prestashop 商店。完成后,复制到最终服务器,更改数据库和域的设置后,网站在ie,ff,chrome和safari中打不开(但是,如果我在浏览器中查看源代码,他是更正),只打开歌剧。在其他浏览器中出现以下错误:

在铬:

This page contains the following errors:
error on line 67 at column 95: EntityRef: expecting ';'
Below is a rendering of the page up to the first error.

在火狐中:

Error in analise the XML: bad formater
Location: http://douradoedourado.pt/
Line number 78, colune 191:$('#logofont').change(function(){var gFontVal=$("option:selected",this).val();var gFontName=gFontVal.split(':');$.cookie("logo_font",gFontVal);if($('head').find('link#logofont_link').length<1){$('head').append('<link id="logofont_link" rel="stylesheet" type="text/css" href="" />');}
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------^

有人帮忙吗?

4

1 回答 1

0

通常,当我们将 PS 站点移动到另一台服务器时,我们会遇到一些问题。要解决它们,请执行以下操作: 注意:这些点可能会或可能不会解决您遇到的问题。

1)禁用缓存并启用强制编译。

2) 从 cache/smarty/compile 以及 cache/smarty/cache 文件夹内容中删除所有编译文件(如果 index.php 除外)

3) 检查站点 url 和 ssl url 的设置。

4) 重新生成.htaccess 文件

在这些之后,检查网站。

如果站点未打开,则启用如下错误

在 config/defines.inc.php 中打开文件并将 _PS_MODE_DEV 设置为 true 以启用错误。

之后重新加载页面。你会看到错误。如果您仍然不理解这些错误,请更新您的帖子以及错误内容,然后我可以帮助您。

谢谢

于 2013-03-17T05:52:28.927 回答