使用prestashop时出现Bad SubDomain SQL查询错误

时间:2014-07-23 10:50:15

标签: php mysql prestashop prestashop-1.5

我的网站在访问该网站时显示Bad Sub Domain SOL query错误。

它是一个电子商务网站,使用的平台是PrestaShop(版本:1.5.5.0),它在过去的两年里运作良好。

有人知道这方面的解决方案吗?

1 个答案:

答案 0 :(得分:1)

试试这个:

1)访问cPanel> phpMyAdmin>你的prestashop数据库(_prestashop)?

2)转到SQL选项卡,对数据库_prestashop运行以下查询:

CREATE TABLE ps_subdomain (
  id_subdomain int(10) unsigned NOT NULL auto_increment,
   name varchar(16) NOT NULL,
   PRIMARY KEY  (id_subdomain)
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;

成功重新创建表ps_subdomain后,需要使用以下查询插入[www]值:

INSERT INTO ps_subdomain (id_subdomain, name) VALUES (1, 'www');

应修正上述错误。