找不到Prestashop类'ProductCore'

时间:2013-10-07 17:23:57

标签: prestashop product webshop prestashop-1.5

首先,我是prestashop的新手。 我安装了它并买了一个主题。 安装主题后,当我尝试查看我的商店时出现此错误 (有错误报告,否则是空白屏幕)

Fatal error: Class 'ProductCore' not found in /nfs/home/mywebsite.com/public_html/store/classes/Product.php on line 4

我没有对代码做过任何事情...... 为什么我得到这个,我怎么能摆脱它?

1 个答案:

答案 0 :(得分:0)

/nfs/home/mywebsite.com/public_html/store/classes/中的文件Product.php必须是原始发行版中的文件,如果需要,请在nfs / home / mywebsite.com / public_html / store / override中覆盖/类/.

原始类定义为:“class ProductCore extends ObjectModel” 覆盖为“class Product extends ProductCore”

最有可能是必须在“override”文件夹中的文件被复制到核心类文件夹中。

只需将/nfs/home/mywebsite.com/public_html/store/classes/Product.php复制到/nfs/home/mywebsite.com/public_html/store/override/classes/ 和原始发行版中的Product.php(相同的PS版本)到/nfs/home/mywebsite.com/public_html/store/classes/

确保备份您要覆盖的所有文件。